From 1626c87d5086395d4eae2d483d0fd9990a7d0718 Mon Sep 17 00:00:00 2001 From: Alain Nicolas Date: Fri, 23 Aug 2024 17:57:04 +0200 Subject: [PATCH] feat(sdk): As a Developer, I want the SDK to be compatible with the new version of the subgraph --- README.md | 2 +- explorer/package.json | 2 +- .../src/constants/columns/attestation.tsx | 48 +- explorer/src/constants/index.ts | 1 + .../components/AttestationInfo/index.tsx | 4 +- explorer/src/pages/Attestation/index.tsx | 2 +- .../Attestations/components/SWRCell/index.tsx | 12 +- explorer/src/pages/Attestations/index.tsx | 2 +- explorer/src/pages/MyAttestations/index.tsx | 2 +- .../components/RecentAttestations/index.tsx | 4 +- .../SearchAttestationsReceived/index.tsx | 2 +- .../loadAttestationReceivedList.ts | 2 +- pnpm-lock.yaml | 16 +- sdk/.graphclient/index.ts | 592 +- sdk/.graphclient/schema.graphql | 544 +- .../introspectionSchema.ts | 14136 +++++++++++----- .../linea-attestation-registry/schema.graphql | 544 +- .../linea-attestation-registry/types.ts | 555 +- sdk/.graphclientrc.yml | 2 +- sdk/package.json | 2 +- sdk/src/VeraxSdk.ts | 20 +- sdk/src/dataMapper/AttestationDataMapper.ts | 35 +- sdk/src/types/index.ts | 5 +- .../Attestation.integration.test.ts | 19 +- 24 files changed, 12211 insertions(+), 4342 deletions(-) diff --git a/README.md b/README.md index cfb3304d..86798460 100644 --- a/README.md +++ b/README.md @@ -282,7 +282,7 @@ Here are the addresses on those networks: - [Linea Sepolia](https://api.studio.thegraph.com/query/67521/verax-v2-linea-sepolia/v0.0.2) - [Linea Mainnet](https://api.studio.thegraph.com/query/67521/verax-v2-linea/v0.0.1) -- [Linea Mainnet (Backup)](https://api.goldsky.com/api/public/project_cm06hsedxpgls01xm39r67el8/subgraphs/verax-v2-arbitrum-nova/0.0.1/gn) +- [Linea Mainnet (Backup)](https://api.goldsky.com/api/public/project_clxx488osyuf501vygg71f86w/subgraphs/verax-v2-linea/0.0.1/gn) - [Arbitrum Sepolia](https://api.studio.thegraph.com/query/67521/verax-v2-arbitrum-sepolia/v0.0.1) - [Arbitrum Mainnet](https://api.studio.thegraph.com/query/67521/verax-v2-arbitrum/v0.0.1) - [Arbitrum Nova](https://api.goldsky.com/api/public/project_cm06hsedxpgls01xm39r67el8/subgraphs/verax-v2-arbitrum-nova/0.0.1/gn) diff --git a/explorer/package.json b/explorer/package.json index 325c4ad2..1bf142a9 100644 --- a/explorer/package.json +++ b/explorer/package.json @@ -26,7 +26,7 @@ "dependencies": { "@radix-ui/react-dropdown-menu": "^2.0.6", "@tanstack/react-table": "^8.10.7", - "@verax-attestation-registry/verax-sdk": "1.11.0", + "@verax-attestation-registry/verax-sdk": "2.0.0-beta.3", "@wagmi/core": "^1.4.7", "abitype": "^0.10.3", "class-variance-authority": "^0.7.0", diff --git a/explorer/src/constants/columns/attestation.tsx b/explorer/src/constants/columns/attestation.tsx index 5d1d5c03..6110a9f0 100644 --- a/explorer/src/constants/columns/attestation.tsx +++ b/explorer/src/constants/columns/attestation.tsx @@ -1,5 +1,5 @@ import { ColumnDef } from "@tanstack/react-table"; -import { Attestation, VeraxSdk } from "@verax-attestation-registry/verax-sdk"; +import { Attestation, Portal, Schema } from "@verax-attestation-registry/verax-sdk"; import { t } from "i18next"; import moment from "moment"; import { Chain, Hex } from "viem"; @@ -10,22 +10,20 @@ import { HelperIndicator } from "@/components/HelperIndicator"; import { Link } from "@/components/Link"; import { SortByDate } from "@/components/SortByDate"; import { ColumnsOptions } from "@/interfaces/components"; -import { SWRKeys } from "@/interfaces/swr/enum"; import { SWRCell } from "@/pages/Attestations/components/SWRCell"; import { toAttestationById, toPortalById, toSchemaById } from "@/routes/constants"; import { getBlockExplorerLink } from "@/utils"; import { displayAmountWithComma } from "@/utils/amountUtils"; import { cropString } from "@/utils/stringUtils"; -import { EMPTY_STRING, ITEMS_PER_PAGE_DEFAULT } from "../index"; +import { EMPTY_0X_STRING, EMPTY_STRING, ITEMS_PER_PAGE_DEFAULT } from "../index"; interface ColumnsProps { sortByDate: boolean; - sdk: VeraxSdk; chain: Chain; } -export const columns = ({ sortByDate = true, sdk, chain }: Partial = {}): ColumnDef[] => [ +export const columns = ({ sortByDate = true, chain }: Partial = {}): ColumnDef[] => [ { accessorKey: "id", header: () => ( @@ -52,18 +50,13 @@ export const columns = ({ sortByDate = true, sdk, chain }: Partial ), cell: ({ row }) => { - if (!sdk) return null; + const portal = row.getValue("portal") as Portal; - const portalId = row.getValue("portal") as string; - const fetcher = () => sdk.portal.findOneById(portalId || EMPTY_STRING); - - return ( - - ); + return ; }, }, { - accessorKey: "schemaId", + accessorKey: "schema", header: () => (
@@ -71,14 +64,9 @@ export const columns = ({ sortByDate = true, sdk, chain }: Partial
), cell: ({ row }) => { - if (!sdk) return null; + const schema = row.getValue("schema") as Schema; - const schemaId = row.getValue("schemaId") as string; - const fetcher = () => sdk.schema.findOneById(schemaId || EMPTY_STRING); - - return ( - - ); + return ; }, }, { @@ -120,10 +108,26 @@ export const skeletonAttestations = (itemPerPage = ITEMS_PER_PAGE_DEFAULT): Arra decodedData: [EMPTY_STRING], decodedPayload: [EMPTY_STRING], attestationId: EMPTY_STRING, - schemaId: EMPTY_STRING, + schema: { + id: EMPTY_0X_STRING, + name: EMPTY_STRING, + description: EMPTY_STRING, + context: EMPTY_STRING, + schema: EMPTY_STRING, + attestationCounter: 0, + }, replacedBy: EMPTY_STRING, attester: `0x${index}`, - portal: `0x${index}`, + portal: { + id: EMPTY_0X_STRING, + ownerAddress: EMPTY_0X_STRING, + modules: [EMPTY_0X_STRING], + isRevocable: false, + name: EMPTY_STRING, + description: EMPTY_STRING, + ownerName: EMPTY_STRING, + attestationCounter: 0, + }, attestedDate: 0, expirationDate: 0, revocationDate: 0, diff --git a/explorer/src/constants/index.ts b/explorer/src/constants/index.ts index 849f01c8..daff423f 100644 --- a/explorer/src/constants/index.ts +++ b/explorer/src/constants/index.ts @@ -3,6 +3,7 @@ import { arbitrum, arbitrumNova, arbitrumSepolia, base, baseSepolia, bsc, bscTes import { lineaSepolia } from "@/config"; export const EMPTY_STRING = ""; +export const EMPTY_0X_STRING = "0x"; export const SPACE_STRING = " "; export const COMMA_STRING = ","; export const DASH = "-"; diff --git a/explorer/src/pages/Attestation/components/AttestationInfo/index.tsx b/explorer/src/pages/Attestation/components/AttestationInfo/index.tsx index 62d28ff2..3a65e9db 100644 --- a/explorer/src/pages/Attestation/components/AttestationInfo/index.tsx +++ b/explorer/src/pages/Attestation/components/AttestationInfo/index.tsx @@ -36,8 +36,8 @@ export const AttestationInfo: React.FC = ({ ...attestation }) => { }, { title: t("attestation.info.portal"), - value: cropString(portal), - to: toPortalById(portal), + value: cropString(portal.name), + to: toPortalById(portal.id), }, { title: t("attestation.info.subject"), diff --git a/explorer/src/pages/Attestation/index.tsx b/explorer/src/pages/Attestation/index.tsx index cc3d6922..c6c0bcd4 100644 --- a/explorer/src/pages/Attestation/index.tsx +++ b/explorer/src/pages/Attestation/index.tsx @@ -44,7 +44,7 @@ export const Attestation = () => {
- + {/* TODO: uncomment when correct data will be available */} {/* */} diff --git a/explorer/src/pages/Attestations/components/SWRCell/index.tsx b/explorer/src/pages/Attestations/components/SWRCell/index.tsx index c7d799e3..97f038cc 100644 --- a/explorer/src/pages/Attestations/components/SWRCell/index.tsx +++ b/explorer/src/pages/Attestations/components/SWRCell/index.tsx @@ -1,19 +1,11 @@ import { Portal, Schema } from "@verax-attestation-registry/verax-sdk"; -import useSWR from "swr"; import { Link } from "@/components/Link"; -import { EMPTY_STRING } from "@/constants"; - -export const SWRCell: React.FC<{ swrKey: string; fetcher: () => Promise; to: string }> = ({ - swrKey, - fetcher, - to, -}) => { - const { data } = useSWR(swrKey, fetcher); +export const SWRCell: React.FC<{ data: Portal | Schema; to: string }> = ({ data, to }) => { return ( e.stopPropagation()}> - {data?.name || EMPTY_STRING} + {data.name} ); }; diff --git a/explorer/src/pages/Attestations/index.tsx b/explorer/src/pages/Attestations/index.tsx index 277db1b9..0f8c5dd2 100644 --- a/explorer/src/pages/Attestations/index.tsx +++ b/explorer/src/pages/Attestations/index.tsx @@ -60,7 +60,7 @@ export const Attestations: React.FC = () => { const data = isLoading ? { columns: columnsSkeletonRef.current, list: skeletonAttestations(itemsPerPage) } - : { columns: columns({ sdk, chain: network.chain }), list: attestationsList || [] }; + : { columns: columns({ chain: network.chain }), list: attestationsList || [] }; return ( diff --git a/explorer/src/pages/MyAttestations/index.tsx b/explorer/src/pages/MyAttestations/index.tsx index a50eb7f4..a089f714 100644 --- a/explorer/src/pages/MyAttestations/index.tsx +++ b/explorer/src/pages/MyAttestations/index.tsx @@ -91,7 +91,7 @@ export const MyAttestations: React.FC = () => { ) : !attestationsList || !attestationsList.length ? ( } message={t("attestation.messages.emptyList")} /> ) : ( - + )} ); diff --git a/explorer/src/pages/Schema/components/RecentAttestations/index.tsx b/explorer/src/pages/Schema/components/RecentAttestations/index.tsx index 0f528b81..b7c1ee37 100644 --- a/explorer/src/pages/Schema/components/RecentAttestations/index.tsx +++ b/explorer/src/pages/Schema/components/RecentAttestations/index.tsx @@ -17,7 +17,7 @@ export const RecentAttestations: React.FC<{ schemaId: string }> = ({ schemaId }) const { data: attestations, isLoading } = useSWR( `${SWRKeys.GET_RECENT_ATTESTATION}/${schemaId}/${chain.id}`, - () => sdk.attestation.findBy(5, 0, { schemaId }, "attestedDate", "desc"), + () => sdk.attestation.findBy(5, 0, { schema: schemaId }, "attestedDate", "desc"), { shouldRetryOnError: false, }, @@ -27,7 +27,7 @@ export const RecentAttestations: React.FC<{ schemaId: string }> = ({ schemaId }) const data = isLoading ? { columns: columnsSkeletonRef.current, list: skeletonAttestations(5) } : { - columns: columns({ sortByDate: false, sdk, chain }), + columns: columns({ sortByDate: false, chain }), list: attestations || [], }; diff --git a/explorer/src/pages/Search/components/SearchAttestationsReceived/index.tsx b/explorer/src/pages/Search/components/SearchAttestationsReceived/index.tsx index 55f4681d..0e32a1e9 100644 --- a/explorer/src/pages/Search/components/SearchAttestationsReceived/index.tsx +++ b/explorer/src/pages/Search/components/SearchAttestationsReceived/index.tsx @@ -31,7 +31,7 @@ export const SearchAttestationsReceived: React.FC = ({ get if (!data || !data.length) return null; return ( - + ); }; diff --git a/explorer/src/pages/Search/components/SearchAttestationsReceived/loadAttestationReceivedList.ts b/explorer/src/pages/Search/components/SearchAttestationsReceived/loadAttestationReceivedList.ts index 19d85f59..7f4457cf 100644 --- a/explorer/src/pages/Search/components/SearchAttestationsReceived/loadAttestationReceivedList.ts +++ b/explorer/src/pages/Search/components/SearchAttestationsReceived/loadAttestationReceivedList.ts @@ -26,7 +26,7 @@ export const loadAttestationReceivedList = async ( ).filter(isNotNullOrUndefined); const listBySchemaString = parsedString.schemaString - ? await attestation.findBy(ITEMS_SEARCHED_DEFAULT, undefined, { schemaString: parsedString.schemaString }) + ? await attestation.findBy(ITEMS_SEARCHED_DEFAULT, undefined, { schema: parsedString.schemaString }) : []; const results = [...(listByIds || []), ...(listBySubject || []), ...(listBySchemaString || [])]; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0505704f..66a5771a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -90,8 +90,8 @@ importers: specifier: ^8.10.7 version: 8.17.3(react-dom@18.3.1)(react@18.3.1) '@verax-attestation-registry/verax-sdk': - specifier: 1.11.0 - version: 1.11.0(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2) + specifier: 2.0.0-beta.3 + version: 2.0.0-beta.3(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2) '@wagmi/core': specifier: ^1.4.7 version: 1.4.13(@types/react@18.3.2)(react@18.3.1)(typescript@5.2.2)(viem@1.18.9) @@ -3489,7 +3489,7 @@ packages: tsconfig-paths: 4.2.0 tslib: 2.6.2 typescript: 5.4.5 - uWebSockets.js: github.com/uNetworking/uWebSockets.js/6f4b450fc642abba540535f0755c990b42a16026 + uWebSockets.js: github.com/uNetworking/uWebSockets.js/51ae1d1fd92dff77cbbdc7c431021f85578da1a6 yargs: 17.7.2 optionalDependencies: node-libcurl: 4.0.0 @@ -9740,8 +9740,8 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@verax-attestation-registry/verax-sdk@1.11.0(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2): - resolution: {integrity: sha512-rewR7ZvBLeKkGOAXUCfQpIKSMa7XTQPbGmy0DbA2xJs0qIf39I3BfP6GKNeire+KrNRiTGpP6E8C8JU3SrSa3w==} + /@verax-attestation-registry/verax-sdk@2.0.0-beta.3(@graphql-mesh/types@0.95.8)(@graphql-tools/utils@10.2.0)(@types/node@20.12.12)(@types/react@18.3.2)(react-dom@18.3.1)(react@18.3.1)(tslib@2.6.2)(typescript@5.2.2): + resolution: {integrity: sha512-War1eN9HxqUNflOSUhmT6LvAj3FIeK9emCV14If5fxCB2nVX80h9rMGjSz/pB/lIzQAykGoDDb4dM+po7kw1UQ==} dependencies: '@graphql-mesh/cache-localforage': 0.95.8(@graphql-mesh/types@0.95.8)(@graphql-mesh/utils@0.95.8)(graphql@16.8.1)(tslib@2.6.2) '@graphql-mesh/cross-helpers': 0.4.2(@graphql-tools/utils@10.2.0)(graphql@16.8.1) @@ -26290,8 +26290,8 @@ packages: use-sync-external-store: 1.2.0(react@18.3.1) dev: false - github.com/uNetworking/uWebSockets.js/6f4b450fc642abba540535f0755c990b42a16026: - resolution: {tarball: https://codeload.github.com/uNetworking/uWebSockets.js/tar.gz/6f4b450fc642abba540535f0755c990b42a16026} + github.com/uNetworking/uWebSockets.js/51ae1d1fd92dff77cbbdc7c431021f85578da1a6: + resolution: {tarball: https://codeload.github.com/uNetworking/uWebSockets.js/tar.gz/51ae1d1fd92dff77cbbdc7c431021f85578da1a6} name: uWebSockets.js - version: 20.47.0 + version: 20.48.0 dev: true diff --git a/sdk/.graphclient/index.ts b/sdk/.graphclient/index.ts index 73dabbba..c61df866 100644 --- a/sdk/.graphclient/index.ts +++ b/sdk/.graphclient/index.ts @@ -49,10 +49,10 @@ export type Aggregation_interval = export type Attestation = { id: Scalars['ID']['output']; - schemaId: Scalars['Bytes']['output']; + schema: Schema; replacedBy: Scalars['Bytes']['output']; attester: Scalars['Bytes']['output']; - portal: Scalars['Bytes']['output']; + portal: Portal; attestedDate: Scalars['BigInt']['output']; expirationDate: Scalars['BigInt']['output']; revocationDate: Scalars['BigInt']['output']; @@ -61,8 +61,8 @@ export type Attestation = { subject: Scalars['Bytes']['output']; encodedSubject: Scalars['Bytes']['output']; attestationData: Scalars['Bytes']['output']; - schemaString?: Maybe; decodedData?: Maybe>; + auditInformation: AuditInformation; }; export type Attestation_filter = { @@ -74,16 +74,27 @@ export type Attestation_filter = { id_lte?: InputMaybe; id_in?: InputMaybe>; id_not_in?: InputMaybe>; - schemaId?: InputMaybe; - schemaId_not?: InputMaybe; - schemaId_gt?: InputMaybe; - schemaId_lt?: InputMaybe; - schemaId_gte?: InputMaybe; - schemaId_lte?: InputMaybe; - schemaId_in?: InputMaybe>; - schemaId_not_in?: InputMaybe>; - schemaId_contains?: InputMaybe; - schemaId_not_contains?: InputMaybe; + schema?: InputMaybe; + schema_not?: InputMaybe; + schema_gt?: InputMaybe; + schema_lt?: InputMaybe; + schema_gte?: InputMaybe; + schema_lte?: InputMaybe; + schema_in?: InputMaybe>; + schema_not_in?: InputMaybe>; + schema_contains?: InputMaybe; + schema_contains_nocase?: InputMaybe; + schema_not_contains?: InputMaybe; + schema_not_contains_nocase?: InputMaybe; + schema_starts_with?: InputMaybe; + schema_starts_with_nocase?: InputMaybe; + schema_not_starts_with?: InputMaybe; + schema_not_starts_with_nocase?: InputMaybe; + schema_ends_with?: InputMaybe; + schema_ends_with_nocase?: InputMaybe; + schema_not_ends_with?: InputMaybe; + schema_not_ends_with_nocase?: InputMaybe; + schema_?: InputMaybe; replacedBy?: InputMaybe; replacedBy_not?: InputMaybe; replacedBy_gt?: InputMaybe; @@ -104,16 +115,27 @@ export type Attestation_filter = { attester_not_in?: InputMaybe>; attester_contains?: InputMaybe; attester_not_contains?: InputMaybe; - portal?: InputMaybe; - portal_not?: InputMaybe; - portal_gt?: InputMaybe; - portal_lt?: InputMaybe; - portal_gte?: InputMaybe; - portal_lte?: InputMaybe; - portal_in?: InputMaybe>; - portal_not_in?: InputMaybe>; - portal_contains?: InputMaybe; - portal_not_contains?: InputMaybe; + portal?: InputMaybe; + portal_not?: InputMaybe; + portal_gt?: InputMaybe; + portal_lt?: InputMaybe; + portal_gte?: InputMaybe; + portal_lte?: InputMaybe; + portal_in?: InputMaybe>; + portal_not_in?: InputMaybe>; + portal_contains?: InputMaybe; + portal_contains_nocase?: InputMaybe; + portal_not_contains?: InputMaybe; + portal_not_contains_nocase?: InputMaybe; + portal_starts_with?: InputMaybe; + portal_starts_with_nocase?: InputMaybe; + portal_not_starts_with?: InputMaybe; + portal_not_starts_with_nocase?: InputMaybe; + portal_ends_with?: InputMaybe; + portal_ends_with_nocase?: InputMaybe; + portal_not_ends_with?: InputMaybe; + portal_not_ends_with_nocase?: InputMaybe; + portal_?: InputMaybe; attestedDate?: InputMaybe; attestedDate_not?: InputMaybe; attestedDate_gt?: InputMaybe; @@ -180,32 +202,33 @@ export type Attestation_filter = { attestationData_not_in?: InputMaybe>; attestationData_contains?: InputMaybe; attestationData_not_contains?: InputMaybe; - schemaString?: InputMaybe; - schemaString_not?: InputMaybe; - schemaString_gt?: InputMaybe; - schemaString_lt?: InputMaybe; - schemaString_gte?: InputMaybe; - schemaString_lte?: InputMaybe; - schemaString_in?: InputMaybe>; - schemaString_not_in?: InputMaybe>; - schemaString_contains?: InputMaybe; - schemaString_contains_nocase?: InputMaybe; - schemaString_not_contains?: InputMaybe; - schemaString_not_contains_nocase?: InputMaybe; - schemaString_starts_with?: InputMaybe; - schemaString_starts_with_nocase?: InputMaybe; - schemaString_not_starts_with?: InputMaybe; - schemaString_not_starts_with_nocase?: InputMaybe; - schemaString_ends_with?: InputMaybe; - schemaString_ends_with_nocase?: InputMaybe; - schemaString_not_ends_with?: InputMaybe; - schemaString_not_ends_with_nocase?: InputMaybe; decodedData?: InputMaybe>; decodedData_not?: InputMaybe>; decodedData_contains?: InputMaybe>; decodedData_contains_nocase?: InputMaybe>; decodedData_not_contains?: InputMaybe>; decodedData_not_contains_nocase?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -214,10 +237,23 @@ export type Attestation_filter = { export type Attestation_orderBy = | 'id' - | 'schemaId' + | 'schema' + | 'schema__id' + | 'schema__name' + | 'schema__description' + | 'schema__context' + | 'schema__schema' + | 'schema__attestationCounter' | 'replacedBy' | 'attester' | 'portal' + | 'portal__id' + | 'portal__ownerAddress' + | 'portal__isRevocable' + | 'portal__name' + | 'portal__description' + | 'portal__ownerName' + | 'portal__attestationCounter' | 'attestedDate' | 'expirationDate' | 'revocationDate' @@ -226,8 +262,209 @@ export type Attestation_orderBy = | 'subject' | 'encodedSubject' | 'attestationData' - | 'schemaString' - | 'decodedData'; + | 'decodedData' + | 'auditInformation' + | 'auditInformation__id'; + +export type Audit = { + id: Scalars['ID']['output']; + blockNumber: Scalars['BigInt']['output']; + transactionHash: Scalars['Bytes']['output']; + transactionTimestamp: Scalars['BigInt']['output']; + fromAddress: Scalars['Bytes']['output']; + toAddress?: Maybe; + valueTransferred?: Maybe; + gasPrice?: Maybe; +}; + +export type AuditInformation = { + id: Scalars['ID']['output']; + creation: Audit; + lastModification: Audit; + modifications: Array; +}; + + +export type AuditInformationmodificationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; +}; + +export type AuditInformation_filter = { + id?: InputMaybe; + id_not?: InputMaybe; + id_gt?: InputMaybe; + id_lt?: InputMaybe; + id_gte?: InputMaybe; + id_lte?: InputMaybe; + id_in?: InputMaybe>; + id_not_in?: InputMaybe>; + creation?: InputMaybe; + creation_not?: InputMaybe; + creation_gt?: InputMaybe; + creation_lt?: InputMaybe; + creation_gte?: InputMaybe; + creation_lte?: InputMaybe; + creation_in?: InputMaybe>; + creation_not_in?: InputMaybe>; + creation_contains?: InputMaybe; + creation_contains_nocase?: InputMaybe; + creation_not_contains?: InputMaybe; + creation_not_contains_nocase?: InputMaybe; + creation_starts_with?: InputMaybe; + creation_starts_with_nocase?: InputMaybe; + creation_not_starts_with?: InputMaybe; + creation_not_starts_with_nocase?: InputMaybe; + creation_ends_with?: InputMaybe; + creation_ends_with_nocase?: InputMaybe; + creation_not_ends_with?: InputMaybe; + creation_not_ends_with_nocase?: InputMaybe; + creation_?: InputMaybe; + lastModification?: InputMaybe; + lastModification_not?: InputMaybe; + lastModification_gt?: InputMaybe; + lastModification_lt?: InputMaybe; + lastModification_gte?: InputMaybe; + lastModification_lte?: InputMaybe; + lastModification_in?: InputMaybe>; + lastModification_not_in?: InputMaybe>; + lastModification_contains?: InputMaybe; + lastModification_contains_nocase?: InputMaybe; + lastModification_not_contains?: InputMaybe; + lastModification_not_contains_nocase?: InputMaybe; + lastModification_starts_with?: InputMaybe; + lastModification_starts_with_nocase?: InputMaybe; + lastModification_not_starts_with?: InputMaybe; + lastModification_not_starts_with_nocase?: InputMaybe; + lastModification_ends_with?: InputMaybe; + lastModification_ends_with_nocase?: InputMaybe; + lastModification_not_ends_with?: InputMaybe; + lastModification_not_ends_with_nocase?: InputMaybe; + lastModification_?: InputMaybe; + modifications?: InputMaybe>; + modifications_not?: InputMaybe>; + modifications_contains?: InputMaybe>; + modifications_contains_nocase?: InputMaybe>; + modifications_not_contains?: InputMaybe>; + modifications_not_contains_nocase?: InputMaybe>; + modifications_?: InputMaybe; + /** Filter for the block changed event. */ + _change_block?: InputMaybe; + and?: InputMaybe>>; + or?: InputMaybe>>; +}; + +export type AuditInformation_orderBy = + | 'id' + | 'creation' + | 'creation__id' + | 'creation__blockNumber' + | 'creation__transactionHash' + | 'creation__transactionTimestamp' + | 'creation__fromAddress' + | 'creation__toAddress' + | 'creation__valueTransferred' + | 'creation__gasPrice' + | 'lastModification' + | 'lastModification__id' + | 'lastModification__blockNumber' + | 'lastModification__transactionHash' + | 'lastModification__transactionTimestamp' + | 'lastModification__fromAddress' + | 'lastModification__toAddress' + | 'lastModification__valueTransferred' + | 'lastModification__gasPrice' + | 'modifications'; + +export type Audit_filter = { + id?: InputMaybe; + id_not?: InputMaybe; + id_gt?: InputMaybe; + id_lt?: InputMaybe; + id_gte?: InputMaybe; + id_lte?: InputMaybe; + id_in?: InputMaybe>; + id_not_in?: InputMaybe>; + blockNumber?: InputMaybe; + blockNumber_not?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_not_in?: InputMaybe>; + transactionHash?: InputMaybe; + transactionHash_not?: InputMaybe; + transactionHash_gt?: InputMaybe; + transactionHash_lt?: InputMaybe; + transactionHash_gte?: InputMaybe; + transactionHash_lte?: InputMaybe; + transactionHash_in?: InputMaybe>; + transactionHash_not_in?: InputMaybe>; + transactionHash_contains?: InputMaybe; + transactionHash_not_contains?: InputMaybe; + transactionTimestamp?: InputMaybe; + transactionTimestamp_not?: InputMaybe; + transactionTimestamp_gt?: InputMaybe; + transactionTimestamp_lt?: InputMaybe; + transactionTimestamp_gte?: InputMaybe; + transactionTimestamp_lte?: InputMaybe; + transactionTimestamp_in?: InputMaybe>; + transactionTimestamp_not_in?: InputMaybe>; + fromAddress?: InputMaybe; + fromAddress_not?: InputMaybe; + fromAddress_gt?: InputMaybe; + fromAddress_lt?: InputMaybe; + fromAddress_gte?: InputMaybe; + fromAddress_lte?: InputMaybe; + fromAddress_in?: InputMaybe>; + fromAddress_not_in?: InputMaybe>; + fromAddress_contains?: InputMaybe; + fromAddress_not_contains?: InputMaybe; + toAddress?: InputMaybe; + toAddress_not?: InputMaybe; + toAddress_gt?: InputMaybe; + toAddress_lt?: InputMaybe; + toAddress_gte?: InputMaybe; + toAddress_lte?: InputMaybe; + toAddress_in?: InputMaybe>; + toAddress_not_in?: InputMaybe>; + toAddress_contains?: InputMaybe; + toAddress_not_contains?: InputMaybe; + valueTransferred?: InputMaybe; + valueTransferred_not?: InputMaybe; + valueTransferred_gt?: InputMaybe; + valueTransferred_lt?: InputMaybe; + valueTransferred_gte?: InputMaybe; + valueTransferred_lte?: InputMaybe; + valueTransferred_in?: InputMaybe>; + valueTransferred_not_in?: InputMaybe>; + gasPrice?: InputMaybe; + gasPrice_not?: InputMaybe; + gasPrice_gt?: InputMaybe; + gasPrice_lt?: InputMaybe; + gasPrice_gte?: InputMaybe; + gasPrice_lte?: InputMaybe; + gasPrice_in?: InputMaybe>; + gasPrice_not_in?: InputMaybe>; + /** Filter for the block changed event. */ + _change_block?: InputMaybe; + and?: InputMaybe>>; + or?: InputMaybe>>; +}; + +export type Audit_orderBy = + | 'id' + | 'blockNumber' + | 'transactionHash' + | 'transactionTimestamp' + | 'fromAddress' + | 'toAddress' + | 'valueTransferred' + | 'gasPrice'; export type BlockChangedFilter = { number_gte: Scalars['Int']['input']; @@ -303,6 +540,7 @@ export type Counter_orderBy = export type Issuer = { id: Scalars['ID']['output']; + auditInformation: AuditInformation; }; export type Issuer_filter = { @@ -314,6 +552,27 @@ export type Issuer_filter = { id_lte?: InputMaybe; id_in?: InputMaybe>; id_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -321,13 +580,16 @@ export type Issuer_filter = { }; export type Issuer_orderBy = - | 'id'; + | 'id' + | 'auditInformation' + | 'auditInformation__id'; export type Module = { id: Scalars['ID']['output']; moduleAddress: Scalars['Bytes']['output']; name: Scalars['String']['output']; description: Scalars['String']['output']; + auditInformation: AuditInformation; }; export type Module_filter = { @@ -389,6 +651,27 @@ export type Module_filter = { description_ends_with_nocase?: InputMaybe; description_not_ends_with?: InputMaybe; description_not_ends_with_nocase?: InputMaybe; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -399,7 +682,9 @@ export type Module_orderBy = | 'id' | 'moduleAddress' | 'name' - | 'description'; + | 'description' + | 'auditInformation' + | 'auditInformation__id'; /** Defines the order direction, either ascending or descending */ export type OrderDirection = @@ -415,6 +700,7 @@ export type Portal = { description: Scalars['String']['output']; ownerName: Scalars['String']['output']; attestationCounter?: Maybe; + auditInformation: AuditInformation; }; export type Portal_filter = { @@ -514,6 +800,27 @@ export type Portal_filter = { attestationCounter_lte?: InputMaybe; attestationCounter_in?: InputMaybe>; attestationCounter_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -528,7 +835,9 @@ export type Portal_orderBy = | 'name' | 'description' | 'ownerName' - | 'attestationCounter'; + | 'attestationCounter' + | 'auditInformation' + | 'auditInformation__id'; export type Query = { attestation?: Maybe; @@ -545,6 +854,10 @@ export type Query = { issuers: Array; registryVersion?: Maybe; registryVersions: Array; + auditInformation?: Maybe; + auditInformations: Array; + audit?: Maybe; + audits: Array; /** Access to subgraph metadata */ _meta?: Maybe<_Meta_>; }; @@ -676,6 +989,42 @@ export type QueryregistryVersionsArgs = { }; +export type QueryauditInformationArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditInformationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + export type Query_metaArgs = { block?: InputMaybe; }; @@ -684,6 +1033,7 @@ export type RegistryVersion = { id: Scalars['ID']['output']; versionNumber?: Maybe; timestamp?: Maybe; + auditInformation: AuditInformation; }; export type RegistryVersion_filter = { @@ -711,6 +1061,27 @@ export type RegistryVersion_filter = { timestamp_lte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -720,7 +1091,9 @@ export type RegistryVersion_filter = { export type RegistryVersion_orderBy = | 'id' | 'versionNumber' - | 'timestamp'; + | 'timestamp' + | 'auditInformation' + | 'auditInformation__id'; export type Schema = { id: Scalars['ID']['output']; @@ -729,6 +1102,7 @@ export type Schema = { context: Scalars['String']['output']; schema: Scalars['String']['output']; attestationCounter?: Maybe; + auditInformation: AuditInformation; }; export type Schema_filter = { @@ -828,6 +1202,27 @@ export type Schema_filter = { attestationCounter_lte?: InputMaybe; attestationCounter_in?: InputMaybe>; attestationCounter_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -840,7 +1235,9 @@ export type Schema_orderBy = | 'description' | 'context' | 'schema' - | 'attestationCounter'; + | 'attestationCounter' + | 'auditInformation' + | 'auditInformation__id'; export type Subscription = { attestation?: Maybe; @@ -857,6 +1254,10 @@ export type Subscription = { issuers: Array; registryVersion?: Maybe; registryVersions: Array; + auditInformation?: Maybe; + auditInformations: Array; + audit?: Maybe; + audits: Array; /** Access to subgraph metadata */ _meta?: Maybe<_Meta_>; }; @@ -988,6 +1389,42 @@ export type SubscriptionregistryVersionsArgs = { }; +export type SubscriptionauditInformationArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditInformationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + export type Subscription_metaArgs = { block?: InputMaybe; }; @@ -1115,6 +1552,12 @@ export type ResolversTypes = ResolversObject<{ Attestation: ResolverTypeWrapper; Attestation_filter: Attestation_filter; Attestation_orderBy: Attestation_orderBy; + Audit: ResolverTypeWrapper; + AuditInformation: ResolverTypeWrapper; + AuditInformation_filter: AuditInformation_filter; + AuditInformation_orderBy: AuditInformation_orderBy; + Audit_filter: Audit_filter; + Audit_orderBy: Audit_orderBy; BigDecimal: ResolverTypeWrapper; BigInt: ResolverTypeWrapper; BlockChangedFilter: BlockChangedFilter; @@ -1157,6 +1600,10 @@ export type ResolversTypes = ResolversObject<{ export type ResolversParentTypes = ResolversObject<{ Attestation: Attestation; Attestation_filter: Attestation_filter; + Audit: Audit; + AuditInformation: AuditInformation; + AuditInformation_filter: AuditInformation_filter; + Audit_filter: Audit_filter; BigDecimal: Scalars['BigDecimal']['output']; BigInt: Scalars['BigInt']['output']; BlockChangedFilter: BlockChangedFilter; @@ -1205,10 +1652,10 @@ export type derivedFromDirectiveResolver = ResolversObject<{ id?: Resolver; - schemaId?: Resolver; + schema?: Resolver; replacedBy?: Resolver; attester?: Resolver; - portal?: Resolver; + portal?: Resolver; attestedDate?: Resolver; expirationDate?: Resolver; revocationDate?: Resolver; @@ -1217,8 +1664,28 @@ export type AttestationResolvers; encodedSubject?: Resolver; attestationData?: Resolver; - schemaString?: Resolver, ParentType, ContextType>; decodedData?: Resolver>, ParentType, ContextType>; + auditInformation?: Resolver; + __isTypeOf?: IsTypeOfResolverFn; +}>; + +export type AuditResolvers = ResolversObject<{ + id?: Resolver; + blockNumber?: Resolver; + transactionHash?: Resolver; + transactionTimestamp?: Resolver; + fromAddress?: Resolver; + toAddress?: Resolver, ParentType, ContextType>; + valueTransferred?: Resolver, ParentType, ContextType>; + gasPrice?: Resolver, ParentType, ContextType>; + __isTypeOf?: IsTypeOfResolverFn; +}>; + +export type AuditInformationResolvers = ResolversObject<{ + id?: Resolver; + creation?: Resolver; + lastModification?: Resolver; + modifications?: Resolver, ParentType, ContextType, RequireFields>; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1249,6 +1716,7 @@ export interface Int8ScalarConfig extends GraphQLScalarTypeConfig = ResolversObject<{ id?: Resolver; + auditInformation?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1257,6 +1725,7 @@ export type ModuleResolvers; name?: Resolver; description?: Resolver; + auditInformation?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1269,6 +1738,7 @@ export type PortalResolvers; ownerName?: Resolver; attestationCounter?: Resolver, ParentType, ContextType>; + auditInformation?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1287,6 +1757,10 @@ export type QueryResolvers, ParentType, ContextType, RequireFields>; registryVersion?: Resolver, ParentType, ContextType, RequireFields>; registryVersions?: Resolver, ParentType, ContextType, RequireFields>; + auditInformation?: Resolver, ParentType, ContextType, RequireFields>; + auditInformations?: Resolver, ParentType, ContextType, RequireFields>; + audit?: Resolver, ParentType, ContextType, RequireFields>; + audits?: Resolver, ParentType, ContextType, RequireFields>; _meta?: Resolver, ParentType, ContextType, Partial>; }>; @@ -1294,6 +1768,7 @@ export type RegistryVersionResolvers; versionNumber?: Resolver, ParentType, ContextType>; timestamp?: Resolver, ParentType, ContextType>; + auditInformation?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1304,6 +1779,7 @@ export type SchemaResolvers; schema?: Resolver; attestationCounter?: Resolver, ParentType, ContextType>; + auditInformation?: Resolver; __isTypeOf?: IsTypeOfResolverFn; }>; @@ -1322,6 +1798,10 @@ export type SubscriptionResolvers, "issuers", ParentType, ContextType, RequireFields>; registryVersion?: SubscriptionResolver, "registryVersion", ParentType, ContextType, RequireFields>; registryVersions?: SubscriptionResolver, "registryVersions", ParentType, ContextType, RequireFields>; + auditInformation?: SubscriptionResolver, "auditInformation", ParentType, ContextType, RequireFields>; + auditInformations?: SubscriptionResolver, "auditInformations", ParentType, ContextType, RequireFields>; + audit?: SubscriptionResolver, "audit", ParentType, ContextType, RequireFields>; + audits?: SubscriptionResolver, "audits", ParentType, ContextType, RequireFields>; _meta?: SubscriptionResolver, "_meta", ParentType, ContextType, Partial>; }>; @@ -1346,6 +1826,8 @@ export type _Meta_Resolvers = ResolversObject<{ Attestation?: AttestationResolvers; + Audit?: AuditResolvers; + AuditInformation?: AuditInformationResolvers; BigDecimal?: GraphQLScalarType; BigInt?: GraphQLScalarType; Bytes?: GraphQLScalarType; @@ -1414,7 +1896,7 @@ const lineaAttestationRegistryTransforms = []; const additionalTypeDefs = [] as any[]; const lineaAttestationRegistryHandler = new GraphqlHandler({ name: "linea-attestation-registry", - config: {"endpoint":"https://api.studio.thegraph.com/query/67521/verax-v1-linea/v0.0.1"}, + config: {"endpoint":"https://api.studio.thegraph.com/query/67521/verax-v2-linea/v0.0.1"}, baseDir, cache, pubsub, diff --git a/sdk/.graphclient/schema.graphql b/sdk/.graphclient/schema.graphql index 4e9a5add..69e71632 100644 --- a/sdk/.graphclient/schema.graphql +++ b/sdk/.graphclient/schema.graphql @@ -23,10 +23,10 @@ enum Aggregation_interval { type Attestation { id: ID! - schemaId: Bytes! + schema: Schema! replacedBy: Bytes! attester: Bytes! - portal: Bytes! + portal: Portal! attestedDate: BigInt! expirationDate: BigInt! revocationDate: BigInt! @@ -35,8 +35,8 @@ type Attestation { subject: Bytes! encodedSubject: Bytes! attestationData: Bytes! - schemaString: String decodedData: [String!] + auditInformation: AuditInformation! } input Attestation_filter { @@ -48,16 +48,27 @@ input Attestation_filter { id_lte: ID id_in: [ID!] id_not_in: [ID!] - schemaId: Bytes - schemaId_not: Bytes - schemaId_gt: Bytes - schemaId_lt: Bytes - schemaId_gte: Bytes - schemaId_lte: Bytes - schemaId_in: [Bytes!] - schemaId_not_in: [Bytes!] - schemaId_contains: Bytes - schemaId_not_contains: Bytes + schema: String + schema_not: String + schema_gt: String + schema_lt: String + schema_gte: String + schema_lte: String + schema_in: [String!] + schema_not_in: [String!] + schema_contains: String + schema_contains_nocase: String + schema_not_contains: String + schema_not_contains_nocase: String + schema_starts_with: String + schema_starts_with_nocase: String + schema_not_starts_with: String + schema_not_starts_with_nocase: String + schema_ends_with: String + schema_ends_with_nocase: String + schema_not_ends_with: String + schema_not_ends_with_nocase: String + schema_: Schema_filter replacedBy: Bytes replacedBy_not: Bytes replacedBy_gt: Bytes @@ -78,16 +89,27 @@ input Attestation_filter { attester_not_in: [Bytes!] attester_contains: Bytes attester_not_contains: Bytes - portal: Bytes - portal_not: Bytes - portal_gt: Bytes - portal_lt: Bytes - portal_gte: Bytes - portal_lte: Bytes - portal_in: [Bytes!] - portal_not_in: [Bytes!] - portal_contains: Bytes - portal_not_contains: Bytes + portal: String + portal_not: String + portal_gt: String + portal_lt: String + portal_gte: String + portal_lte: String + portal_in: [String!] + portal_not_in: [String!] + portal_contains: String + portal_contains_nocase: String + portal_not_contains: String + portal_not_contains_nocase: String + portal_starts_with: String + portal_starts_with_nocase: String + portal_not_starts_with: String + portal_not_starts_with_nocase: String + portal_ends_with: String + portal_ends_with_nocase: String + portal_not_ends_with: String + portal_not_ends_with_nocase: String + portal_: Portal_filter attestedDate: BigInt attestedDate_not: BigInt attestedDate_gt: BigInt @@ -154,32 +176,33 @@ input Attestation_filter { attestationData_not_in: [Bytes!] attestationData_contains: Bytes attestationData_not_contains: Bytes - schemaString: String - schemaString_not: String - schemaString_gt: String - schemaString_lt: String - schemaString_gte: String - schemaString_lte: String - schemaString_in: [String!] - schemaString_not_in: [String!] - schemaString_contains: String - schemaString_contains_nocase: String - schemaString_not_contains: String - schemaString_not_contains_nocase: String - schemaString_starts_with: String - schemaString_starts_with_nocase: String - schemaString_not_starts_with: String - schemaString_not_starts_with_nocase: String - schemaString_ends_with: String - schemaString_ends_with_nocase: String - schemaString_not_ends_with: String - schemaString_not_ends_with_nocase: String decodedData: [String!] decodedData_not: [String!] decodedData_contains: [String!] decodedData_contains_nocase: [String!] decodedData_not_contains: [String!] decodedData_not_contains_nocase: [String!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Attestation_filter] @@ -188,10 +211,23 @@ input Attestation_filter { enum Attestation_orderBy { id - schemaId + schema + schema__id + schema__name + schema__description + schema__context + schema__schema + schema__attestationCounter replacedBy attester portal + portal__id + portal__ownerAddress + portal__isRevocable + portal__name + portal__description + portal__ownerName + portal__attestationCounter attestedDate expirationDate revocationDate @@ -200,8 +236,202 @@ enum Attestation_orderBy { subject encodedSubject attestationData - schemaString decodedData + auditInformation + auditInformation__id +} + +type Audit { + id: ID! + blockNumber: BigInt! + transactionHash: Bytes! + transactionTimestamp: BigInt! + fromAddress: Bytes! + toAddress: Bytes + valueTransferred: BigInt + gasPrice: BigInt +} + +type AuditInformation { + id: ID! + creation: Audit! + lastModification: Audit! + modifications(skip: Int = 0, first: Int = 100, orderBy: Audit_orderBy, orderDirection: OrderDirection, where: Audit_filter): [Audit!]! +} + +input AuditInformation_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + creation: String + creation_not: String + creation_gt: String + creation_lt: String + creation_gte: String + creation_lte: String + creation_in: [String!] + creation_not_in: [String!] + creation_contains: String + creation_contains_nocase: String + creation_not_contains: String + creation_not_contains_nocase: String + creation_starts_with: String + creation_starts_with_nocase: String + creation_not_starts_with: String + creation_not_starts_with_nocase: String + creation_ends_with: String + creation_ends_with_nocase: String + creation_not_ends_with: String + creation_not_ends_with_nocase: String + creation_: Audit_filter + lastModification: String + lastModification_not: String + lastModification_gt: String + lastModification_lt: String + lastModification_gte: String + lastModification_lte: String + lastModification_in: [String!] + lastModification_not_in: [String!] + lastModification_contains: String + lastModification_contains_nocase: String + lastModification_not_contains: String + lastModification_not_contains_nocase: String + lastModification_starts_with: String + lastModification_starts_with_nocase: String + lastModification_not_starts_with: String + lastModification_not_starts_with_nocase: String + lastModification_ends_with: String + lastModification_ends_with_nocase: String + lastModification_not_ends_with: String + lastModification_not_ends_with_nocase: String + lastModification_: Audit_filter + modifications: [String!] + modifications_not: [String!] + modifications_contains: [String!] + modifications_contains_nocase: [String!] + modifications_not_contains: [String!] + modifications_not_contains_nocase: [String!] + modifications_: Audit_filter + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [AuditInformation_filter] + or: [AuditInformation_filter] +} + +enum AuditInformation_orderBy { + id + creation + creation__id + creation__blockNumber + creation__transactionHash + creation__transactionTimestamp + creation__fromAddress + creation__toAddress + creation__valueTransferred + creation__gasPrice + lastModification + lastModification__id + lastModification__blockNumber + lastModification__transactionHash + lastModification__transactionTimestamp + lastModification__fromAddress + lastModification__toAddress + lastModification__valueTransferred + lastModification__gasPrice + modifications +} + +input Audit_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + blockNumber: BigInt + blockNumber_not: BigInt + blockNumber_gt: BigInt + blockNumber_lt: BigInt + blockNumber_gte: BigInt + blockNumber_lte: BigInt + blockNumber_in: [BigInt!] + blockNumber_not_in: [BigInt!] + transactionHash: Bytes + transactionHash_not: Bytes + transactionHash_gt: Bytes + transactionHash_lt: Bytes + transactionHash_gte: Bytes + transactionHash_lte: Bytes + transactionHash_in: [Bytes!] + transactionHash_not_in: [Bytes!] + transactionHash_contains: Bytes + transactionHash_not_contains: Bytes + transactionTimestamp: BigInt + transactionTimestamp_not: BigInt + transactionTimestamp_gt: BigInt + transactionTimestamp_lt: BigInt + transactionTimestamp_gte: BigInt + transactionTimestamp_lte: BigInt + transactionTimestamp_in: [BigInt!] + transactionTimestamp_not_in: [BigInt!] + fromAddress: Bytes + fromAddress_not: Bytes + fromAddress_gt: Bytes + fromAddress_lt: Bytes + fromAddress_gte: Bytes + fromAddress_lte: Bytes + fromAddress_in: [Bytes!] + fromAddress_not_in: [Bytes!] + fromAddress_contains: Bytes + fromAddress_not_contains: Bytes + toAddress: Bytes + toAddress_not: Bytes + toAddress_gt: Bytes + toAddress_lt: Bytes + toAddress_gte: Bytes + toAddress_lte: Bytes + toAddress_in: [Bytes!] + toAddress_not_in: [Bytes!] + toAddress_contains: Bytes + toAddress_not_contains: Bytes + valueTransferred: BigInt + valueTransferred_not: BigInt + valueTransferred_gt: BigInt + valueTransferred_lt: BigInt + valueTransferred_gte: BigInt + valueTransferred_lte: BigInt + valueTransferred_in: [BigInt!] + valueTransferred_not_in: [BigInt!] + gasPrice: BigInt + gasPrice_not: BigInt + gasPrice_gt: BigInt + gasPrice_lt: BigInt + gasPrice_gte: BigInt + gasPrice_lte: BigInt + gasPrice_in: [BigInt!] + gasPrice_not_in: [BigInt!] + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Audit_filter] + or: [Audit_filter] +} + +enum Audit_orderBy { + id + blockNumber + transactionHash + transactionTimestamp + fromAddress + toAddress + valueTransferred + gasPrice } scalar BigDecimal @@ -291,6 +521,7 @@ scalar Int8 type Issuer { id: ID! + auditInformation: AuditInformation! } input Issuer_filter { @@ -302,6 +533,27 @@ input Issuer_filter { id_lte: ID id_in: [ID!] id_not_in: [ID!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Issuer_filter] @@ -310,6 +562,8 @@ input Issuer_filter { enum Issuer_orderBy { id + auditInformation + auditInformation__id } type Module { @@ -317,6 +571,7 @@ type Module { moduleAddress: Bytes! name: String! description: String! + auditInformation: AuditInformation! } input Module_filter { @@ -378,6 +633,27 @@ input Module_filter { description_ends_with_nocase: String description_not_ends_with: String description_not_ends_with_nocase: String + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Module_filter] @@ -389,6 +665,8 @@ enum Module_orderBy { moduleAddress name description + auditInformation + auditInformation__id } """Defines the order direction, either ascending or descending""" @@ -406,6 +684,7 @@ type Portal { description: String! ownerName: String! attestationCounter: Int + auditInformation: AuditInformation! } input Portal_filter { @@ -505,6 +784,27 @@ input Portal_filter { attestationCounter_lte: Int attestationCounter_in: [Int!] attestationCounter_not_in: [Int!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Portal_filter] @@ -520,6 +820,8 @@ enum Portal_orderBy { description ownerName attestationCounter + auditInformation + auditInformation__id } type Query { @@ -705,6 +1007,58 @@ type Query { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [RegistryVersion!]! + auditInformation( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): AuditInformation + auditInformations( + skip: Int = 0 + first: Int = 100 + orderBy: AuditInformation_orderBy + orderDirection: OrderDirection + where: AuditInformation_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [AuditInformation!]! + audit( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Audit + audits( + skip: Int = 0 + first: Int = 100 + orderBy: Audit_orderBy + orderDirection: OrderDirection + where: Audit_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Audit!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ } @@ -713,6 +1067,7 @@ type RegistryVersion { id: ID! versionNumber: Int timestamp: BigInt + auditInformation: AuditInformation! } input RegistryVersion_filter { @@ -740,6 +1095,27 @@ input RegistryVersion_filter { timestamp_lte: BigInt timestamp_in: [BigInt!] timestamp_not_in: [BigInt!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [RegistryVersion_filter] @@ -750,6 +1126,8 @@ enum RegistryVersion_orderBy { id versionNumber timestamp + auditInformation + auditInformation__id } type Schema { @@ -759,6 +1137,7 @@ type Schema { context: String! schema: String! attestationCounter: Int + auditInformation: AuditInformation! } input Schema_filter { @@ -858,6 +1237,27 @@ input Schema_filter { attestationCounter_lte: Int attestationCounter_in: [Int!] attestationCounter_not_in: [Int!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Schema_filter] @@ -871,6 +1271,8 @@ enum Schema_orderBy { context schema attestationCounter + auditInformation + auditInformation__id } type Subscription { @@ -1056,6 +1458,58 @@ type Subscription { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [RegistryVersion!]! + auditInformation( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): AuditInformation + auditInformations( + skip: Int = 0 + first: Int = 100 + orderBy: AuditInformation_orderBy + orderDirection: OrderDirection + where: AuditInformation_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [AuditInformation!]! + audit( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Audit + audits( + skip: Int = 0 + first: Int = 100 + orderBy: Audit_orderBy + orderDirection: OrderDirection + where: Audit_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Audit!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ } diff --git a/sdk/.graphclient/sources/linea-attestation-registry/introspectionSchema.ts b/sdk/.graphclient/sources/linea-attestation-registry/introspectionSchema.ts index 3bdb5362..6f578d93 100644 --- a/sdk/.graphclient/sources/linea-attestation-registry/introspectionSchema.ts +++ b/sdk/.graphclient/sources/linea-attestation-registry/introspectionSchema.ts @@ -186,7 +186,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemaId" + "value": "schema" }, "arguments": [], "type": { @@ -195,7 +195,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "Schema" } } }, @@ -252,7 +252,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "Portal" } } }, @@ -414,14 +414,20 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemaString" + "value": "decodedData" }, "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -430,19 +436,16 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "decodedData" + "value": "auditInformation" }, "arguments": [], "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" } } }, @@ -595,13 +598,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId" + "value": "schema" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -610,13 +613,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_not" + "value": "schema_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -625,13 +628,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_gt" + "value": "schema_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -640,13 +643,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_lt" + "value": "schema_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -655,13 +658,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_gte" + "value": "schema_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -670,13 +673,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_lte" + "value": "schema_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -685,7 +688,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_in" + "value": "schema_in" }, "type": { "kind": "ListType", @@ -695,7 +698,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } } } @@ -706,7 +709,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_not_in" + "value": "schema_not_in" }, "type": { "kind": "ListType", @@ -716,7 +719,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } } } @@ -727,13 +730,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_contains" + "value": "schema_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -742,13 +745,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId_not_contains" + "value": "schema_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -757,13 +760,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy" + "value": "schema_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -772,13 +775,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_not" + "value": "schema_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -787,13 +790,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_gt" + "value": "schema_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -802,13 +805,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_lt" + "value": "schema_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -817,13 +820,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_gte" + "value": "schema_not_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -832,13 +835,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_lte" + "value": "schema_not_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -847,19 +850,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_in" + "value": "schema_ends_with" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -868,19 +865,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_not_in" + "value": "schema_ends_with_nocase" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -889,13 +880,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_contains" + "value": "schema_not_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -904,13 +895,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy_not_contains" + "value": "schema_not_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -919,7 +910,22 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester" + "value": "schema_" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "replacedBy" }, "type": { "kind": "NamedType", @@ -934,7 +940,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_not" + "value": "replacedBy_not" }, "type": { "kind": "NamedType", @@ -949,7 +955,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_gt" + "value": "replacedBy_gt" }, "type": { "kind": "NamedType", @@ -964,7 +970,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_lt" + "value": "replacedBy_lt" }, "type": { "kind": "NamedType", @@ -979,7 +985,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_gte" + "value": "replacedBy_gte" }, "type": { "kind": "NamedType", @@ -994,7 +1000,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_lte" + "value": "replacedBy_lte" }, "type": { "kind": "NamedType", @@ -1009,7 +1015,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_in" + "value": "replacedBy_in" }, "type": { "kind": "ListType", @@ -1030,7 +1036,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_not_in" + "value": "replacedBy_not_in" }, "type": { "kind": "ListType", @@ -1051,7 +1057,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_contains" + "value": "replacedBy_contains" }, "type": { "kind": "NamedType", @@ -1066,7 +1072,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester_not_contains" + "value": "replacedBy_not_contains" }, "type": { "kind": "NamedType", @@ -1081,7 +1087,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal" + "value": "attester" }, "type": { "kind": "NamedType", @@ -1096,7 +1102,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_not" + "value": "attester_not" }, "type": { "kind": "NamedType", @@ -1111,7 +1117,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_gt" + "value": "attester_gt" }, "type": { "kind": "NamedType", @@ -1126,7 +1132,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_lt" + "value": "attester_lt" }, "type": { "kind": "NamedType", @@ -1141,7 +1147,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_gte" + "value": "attester_gte" }, "type": { "kind": "NamedType", @@ -1156,7 +1162,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_lte" + "value": "attester_lte" }, "type": { "kind": "NamedType", @@ -1171,7 +1177,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_in" + "value": "attester_in" }, "type": { "kind": "ListType", @@ -1192,7 +1198,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_not_in" + "value": "attester_not_in" }, "type": { "kind": "ListType", @@ -1213,7 +1219,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_contains" + "value": "attester_contains" }, "type": { "kind": "NamedType", @@ -1228,7 +1234,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal_not_contains" + "value": "attester_not_contains" }, "type": { "kind": "NamedType", @@ -1243,13 +1249,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate" + "value": "portal" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1258,13 +1264,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_not" + "value": "portal_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1273,13 +1279,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_gt" + "value": "portal_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1288,13 +1294,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_lt" + "value": "portal_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1303,13 +1309,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_gte" + "value": "portal_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1318,13 +1324,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_lte" + "value": "portal_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1333,7 +1339,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_in" + "value": "portal_in" }, "type": { "kind": "ListType", @@ -1343,7 +1349,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } } } @@ -1354,7 +1360,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate_not_in" + "value": "portal_not_in" }, "type": { "kind": "ListType", @@ -1364,7 +1370,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } } } @@ -1375,13 +1381,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate" + "value": "portal_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1390,13 +1396,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_not" + "value": "portal_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1405,13 +1411,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_gt" + "value": "portal_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1420,13 +1426,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_lt" + "value": "portal_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1435,13 +1441,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_gte" + "value": "portal_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1450,13 +1456,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_lte" + "value": "portal_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1465,19 +1471,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_in" + "value": "portal_not_starts_with" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -1486,19 +1486,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "expirationDate_not_in" + "value": "portal_not_starts_with_nocase" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -1507,13 +1501,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate" + "value": "portal_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1522,13 +1516,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_not" + "value": "portal_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1537,13 +1531,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_gt" + "value": "portal_not_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1552,13 +1546,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_lt" + "value": "portal_not_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -1567,13 +1561,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_gte" + "value": "portal_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "Portal_filter" } }, "directives": [] @@ -1582,7 +1576,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_lte" + "value": "attestedDate" }, "type": { "kind": "NamedType", @@ -1597,19 +1591,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_in" + "value": "attestedDate_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -1618,19 +1606,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revocationDate_not_in" + "value": "attestedDate_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -1639,7 +1621,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version" + "value": "attestedDate_lt" }, "type": { "kind": "NamedType", @@ -1654,7 +1636,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_not" + "value": "attestedDate_gte" }, "type": { "kind": "NamedType", @@ -1669,7 +1651,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_gt" + "value": "attestedDate_lte" }, "type": { "kind": "NamedType", @@ -1684,13 +1666,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_lt" + "value": "attestedDate_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + } } }, "directives": [] @@ -1699,7 +1687,28 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_gte" + "value": "attestedDate_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "expirationDate" }, "type": { "kind": "NamedType", @@ -1714,7 +1723,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_lte" + "value": "expirationDate_not" }, "type": { "kind": "NamedType", @@ -1729,19 +1738,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_in" + "value": "expirationDate_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -1750,19 +1753,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "version_not_in" + "value": "expirationDate_lt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -1771,13 +1768,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revoked" + "value": "expirationDate_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Boolean" + "value": "BigInt" } }, "directives": [] @@ -1786,13 +1783,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revoked_not" + "value": "expirationDate_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Boolean" + "value": "BigInt" } }, "directives": [] @@ -1801,7 +1798,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revoked_in" + "value": "expirationDate_in" }, "type": { "kind": "ListType", @@ -1811,7 +1808,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Boolean" + "value": "BigInt" } } } @@ -1822,7 +1819,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "revoked_not_in" + "value": "expirationDate_not_in" }, "type": { "kind": "ListType", @@ -1832,7 +1829,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Boolean" + "value": "BigInt" } } } @@ -1843,13 +1840,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject" + "value": "revocationDate" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1858,13 +1855,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_not" + "value": "revocationDate_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1873,13 +1870,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_gt" + "value": "revocationDate_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1888,13 +1885,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_lt" + "value": "revocationDate_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1903,13 +1900,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_gte" + "value": "revocationDate_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1918,13 +1915,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_lte" + "value": "revocationDate_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -1933,7 +1930,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_in" + "value": "revocationDate_in" }, "type": { "kind": "ListType", @@ -1943,7 +1940,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } } } @@ -1954,7 +1951,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_not_in" + "value": "revocationDate_not_in" }, "type": { "kind": "ListType", @@ -1964,7 +1961,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } } } @@ -1975,43 +1972,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "subject_contains" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "subject_not_contains" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "encodedSubject" + "value": "version" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2020,13 +1987,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_not" + "value": "version_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2035,13 +2002,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_gt" + "value": "version_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2050,13 +2017,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_lt" + "value": "version_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2065,13 +2032,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_gte" + "value": "version_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2080,13 +2047,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_lte" + "value": "version_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } }, "directives": [] @@ -2095,7 +2062,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_in" + "value": "version_in" }, "type": { "kind": "ListType", @@ -2105,7 +2072,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } } } @@ -2116,7 +2083,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_not_in" + "value": "version_not_in" }, "type": { "kind": "ListType", @@ -2126,7 +2093,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } } } @@ -2137,13 +2104,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_contains" + "value": "revoked" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "Boolean" } }, "directives": [] @@ -2152,13 +2119,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "encodedSubject_not_contains" + "value": "revoked_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "Boolean" } }, "directives": [] @@ -2167,14 +2134,20 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData" + "value": "revoked_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + } + } }, "directives": [] }, @@ -2182,7 +2155,28 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_not" + "value": "revoked_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "subject" }, "type": { "kind": "NamedType", @@ -2197,7 +2191,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_gt" + "value": "subject_not" }, "type": { "kind": "NamedType", @@ -2212,7 +2206,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_lt" + "value": "subject_gt" }, "type": { "kind": "NamedType", @@ -2227,7 +2221,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_gte" + "value": "subject_lt" }, "type": { "kind": "NamedType", @@ -2242,7 +2236,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_lte" + "value": "subject_gte" }, "type": { "kind": "NamedType", @@ -2257,7 +2251,22 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_in" + "value": "subject_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "subject_in" }, "type": { "kind": "ListType", @@ -2278,7 +2287,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_not_in" + "value": "subject_not_in" }, "type": { "kind": "ListType", @@ -2299,7 +2308,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_contains" + "value": "subject_contains" }, "type": { "kind": "NamedType", @@ -2314,7 +2323,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationData_not_contains" + "value": "subject_not_contains" }, "type": { "kind": "NamedType", @@ -2329,13 +2338,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString" + "value": "encodedSubject" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2344,13 +2353,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not" + "value": "encodedSubject_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2359,13 +2368,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_gt" + "value": "encodedSubject_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2374,13 +2383,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_lt" + "value": "encodedSubject_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2389,13 +2398,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_gte" + "value": "encodedSubject_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2404,13 +2413,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_lte" + "value": "encodedSubject_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2419,7 +2428,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_in" + "value": "encodedSubject_in" }, "type": { "kind": "ListType", @@ -2429,7 +2438,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } } } @@ -2440,7 +2449,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_in" + "value": "encodedSubject_not_in" }, "type": { "kind": "ListType", @@ -2450,7 +2459,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } } } @@ -2461,13 +2470,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_contains" + "value": "encodedSubject_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2476,13 +2485,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_contains_nocase" + "value": "encodedSubject_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2491,13 +2500,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_contains" + "value": "attestationData" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2506,13 +2515,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_contains_nocase" + "value": "attestationData_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2521,13 +2530,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_starts_with" + "value": "attestationData_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2536,13 +2545,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_starts_with_nocase" + "value": "attestationData_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2551,13 +2560,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_starts_with" + "value": "attestationData_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2566,13 +2575,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_starts_with_nocase" + "value": "attestationData_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2581,13 +2590,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_ends_with" + "value": "attestationData_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } } }, "directives": [] @@ -2596,13 +2611,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_ends_with_nocase" + "value": "attestationData_not_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } } }, "directives": [] @@ -2611,13 +2632,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_ends_with" + "value": "attestationData_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2626,13 +2647,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaString_not_ends_with_nocase" + "value": "attestationData_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -2765,20 +2786,15 @@ const schemaAST = { }, { "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, "name": { "kind": "Name", - "value": "_change_block" + "value": "auditInformation" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BlockChangedFilter" + "value": "String" } }, "directives": [] @@ -2787,16 +2803,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "and" + "value": "auditInformation_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Attestation_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -2805,215 +2818,130 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "or" + "value": "auditInformation_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Attestation_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "Attestation_orderBy" - }, - "values": [ + }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "auditInformation_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemaId" + "value": "auditInformation_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "replacedBy" + "value": "auditInformation_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attester" + "value": "auditInformation_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portal" + "value": "auditInformation_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestedDate" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "expirationDate" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "revocationDate" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "version" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "revoked" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "subject" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "encodedSubject" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "attestationData" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "schemaString" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "decodedData" - }, - "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ScalarTypeDefinition", - "name": { - "kind": "Name", - "value": "BigDecimal" - }, - "directives": [] - }, - { - "kind": "ScalarTypeDefinition", - "name": { - "kind": "Name", - "value": "BigInt" - }, - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "BlockChangedFilter" - }, - "fields": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "number_gte" + "value": "auditInformation_contains" }, "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Block_height" - }, - "fields": [ + }, { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "hash" + "value": "auditInformation_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -3022,13 +2950,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "number" + "value": "auditInformation_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -3037,140 +2965,88 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "number_gte" + "value": "auditInformation_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" - } - }, - "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ScalarTypeDefinition", - "name": { - "kind": "Name", - "value": "Bytes" - }, - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Counter" - }, - "fields": [ - { - "kind": "FieldDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "arguments": [], - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestations" + "value": "auditInformation_starts_with" }, - "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "auditInformation_starts_with_nocase" }, - "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "portals" + "value": "auditInformation_not_starts_with" }, - "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemas" + "value": "auditInformation_not_starts_with_nocase" }, - "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] - } - ], - "interfaces": [], - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Counter_filter" - }, - "fields": [ + }, { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "auditInformation_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -3179,13 +3055,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not" + "value": "auditInformation_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -3194,13 +3070,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gt" + "value": "auditInformation_not_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -3209,13 +3085,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lt" + "value": "auditInformation_not_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -3224,28 +3100,33 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gte" + "value": "auditInformation_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "AuditInformation_filter" } }, "directives": [] }, { "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, "name": { "kind": "Name", - "value": "id_lte" + "value": "_change_block" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BlockChangedFilter" } }, "directives": [] @@ -3254,18 +3135,15 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_in" + "value": "and" }, "type": { "kind": "ListType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_filter" } } }, @@ -3275,694 +3153,587 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not_in" + "value": "or" }, "type": { "kind": "ListType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_filter" } } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Attestation_orderBy" + }, + "values": [ { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "schema" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_gt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "schema__id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_lt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "schema__name" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_gte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "schema__description" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_lte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "schema__context" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "schema__schema" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestations_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "schema__attestationCounter" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "replacedBy" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "attester" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_gt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_lt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal__id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_gte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal__ownerAddress" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_lte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal__isRevocable" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "portal__name" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "modules_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "portal__description" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal__ownerName" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "portal__attestationCounter" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_gt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "attestedDate" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_lt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "expirationDate" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_gte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "revocationDate" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_lte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "version" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "revoked" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "portals_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - } - } + "value": "subject" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schemas" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "encodedSubject" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schemas_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "attestationData" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schemas_gt" + "value": "decodedData" }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schemas_lt" + "value": "auditInformation__id" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Audit" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "id" }, + "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemas_gte" + "value": "blockNumber" }, + "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemas_lte" + "value": "transactionHash" }, + "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemas_in" + "value": "transactionTimestamp" }, + "arguments": [], "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemas_not_in" + "value": "fromAddress" }, + "arguments": [], "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" } } }, "directives": [] }, { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "_change_block" + "value": "toAddress" }, + "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BlockChangedFilter" + "value": "Bytes" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "and" + "value": "valueTransferred" }, + "arguments": [], "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Counter_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "or" + "value": "gasPrice" }, + "arguments": [], "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Counter_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] } ], + "interfaces": [], "directives": [] }, { - "kind": "EnumTypeDefinition", + "kind": "ObjectTypeDefinition", "name": { "kind": "Name", - "value": "Counter_orderBy" + "value": "AuditInformation" }, - "values": [ + "fields": [ { - "kind": "EnumValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", "value": "id" }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestations" + "value": "creation" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit" + } + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "lastModification" }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "portals" + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit" + } + } }, "directives": [] }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "schemas" - }, - "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ScalarTypeDefinition", - "description": { - "kind": "StringValue", - "value": "8 bytes signed integer\n", - "block": true - }, - "name": { - "kind": "Name", - "value": "Int8" - }, - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Issuer" - }, - "fields": [ { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "id" + "value": "modifications" }, - "arguments": [], + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_filter" + } + }, + "directives": [] + } + ], "type": { "kind": "NonNullType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit" + } + } } } }, @@ -3976,7 +3747,7 @@ const schemaAST = { "kind": "InputObjectTypeDefinition", "name": { "kind": "Name", - "value": "Issuer_filter" + "value": "AuditInformation_filter" }, "fields": [ { @@ -4113,20 +3884,15 @@ const schemaAST = { }, { "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, "name": { "kind": "Name", - "value": "_change_block" + "value": "creation" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BlockChangedFilter" + "value": "String" } }, "directives": [] @@ -4135,16 +3901,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "and" + "value": "creation_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Issuer_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -4153,146 +3916,100 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "or" + "value": "creation_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Issuer_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "Issuer_orderBy" - }, - "values": [ + }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "creation_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Module" - }, - "fields": [ + }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "creation_gte" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress" + "value": "creation_lte" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "creation_in" }, - "arguments": [], "type": { - "kind": "NonNullType", + "kind": "ListType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } - } - }, - "directives": [] - }, - { - "kind": "FieldDefinition", - "name": { - "kind": "Name", - "value": "description" - }, - "arguments": [], - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } } } }, "directives": [] - } - ], - "interfaces": [], - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Module_filter" - }, - "fields": [ + }, { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "creation_not_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -4301,13 +4018,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not" + "value": "creation_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -4316,13 +4033,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gt" + "value": "creation_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -4331,13 +4048,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lt" + "value": "creation_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -4346,13 +4063,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gte" + "value": "creation_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -4361,55 +4078,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lte" + "value": "creation_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } + "value": "String" } }, "directives": [] @@ -4418,13 +4093,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress" + "value": "creation_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4433,13 +4108,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_not" + "value": "creation_not_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4448,13 +4123,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_gt" + "value": "creation_not_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4463,13 +4138,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_lt" + "value": "creation_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4478,13 +4153,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_gte" + "value": "creation_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4493,55 +4168,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_lte" + "value": "creation_not_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "moduleAddress_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "moduleAddress_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "value": "String" } }, "directives": [] @@ -4550,13 +4183,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_contains" + "value": "creation_not_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "String" } }, "directives": [] @@ -4565,13 +4198,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress_not_contains" + "value": "creation_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "Audit_filter" } }, "directives": [] @@ -4580,7 +4213,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "lastModification" }, "type": { "kind": "NamedType", @@ -4595,7 +4228,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not" + "value": "lastModification_not" }, "type": { "kind": "NamedType", @@ -4610,7 +4243,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gt" + "value": "lastModification_gt" }, "type": { "kind": "NamedType", @@ -4625,7 +4258,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lt" + "value": "lastModification_lt" }, "type": { "kind": "NamedType", @@ -4640,7 +4273,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gte" + "value": "lastModification_gte" }, "type": { "kind": "NamedType", @@ -4655,7 +4288,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lte" + "value": "lastModification_lte" }, "type": { "kind": "NamedType", @@ -4670,7 +4303,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_in" + "value": "lastModification_in" }, "type": { "kind": "ListType", @@ -4691,7 +4324,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_in" + "value": "lastModification_not_in" }, "type": { "kind": "ListType", @@ -4712,7 +4345,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains" + "value": "lastModification_contains" }, "type": { "kind": "NamedType", @@ -4727,7 +4360,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains_nocase" + "value": "lastModification_contains_nocase" }, "type": { "kind": "NamedType", @@ -4742,7 +4375,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains" + "value": "lastModification_not_contains" }, "type": { "kind": "NamedType", @@ -4757,7 +4390,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains_nocase" + "value": "lastModification_not_contains_nocase" }, "type": { "kind": "NamedType", @@ -4772,7 +4405,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with" + "value": "lastModification_starts_with" }, "type": { "kind": "NamedType", @@ -4787,7 +4420,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with_nocase" + "value": "lastModification_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -4802,7 +4435,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with" + "value": "lastModification_not_starts_with" }, "type": { "kind": "NamedType", @@ -4817,7 +4450,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with_nocase" + "value": "lastModification_not_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -4832,7 +4465,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with" + "value": "lastModification_ends_with" }, "type": { "kind": "NamedType", @@ -4847,7 +4480,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with_nocase" + "value": "lastModification_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -4862,7 +4495,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with" + "value": "lastModification_not_ends_with" }, "type": { "kind": "NamedType", @@ -4877,7 +4510,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with_nocase" + "value": "lastModification_not_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -4892,13 +4525,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "lastModification_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Audit_filter" } }, "directives": [] @@ -4907,13 +4540,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not" + "value": "modifications" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -4922,13 +4561,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gt" + "value": "modifications_not" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -4937,13 +4582,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lt" + "value": "modifications_contains" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -4952,13 +4603,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gte" + "value": "modifications_contains_nocase" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -4967,22 +4624,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "description_in" + "value": "modifications_not_contains" }, "type": { "kind": "ListType", @@ -5003,7 +4645,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_in" + "value": "modifications_not_contains_nocase" }, "type": { "kind": "ListType", @@ -5024,28 +4666,33 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_contains" + "value": "modifications_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Audit_filter" } }, "directives": [] }, { "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, "name": { "kind": "Name", - "value": "description_contains_nocase" + "value": "_change_block" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BlockChangedFilter" } }, "directives": [] @@ -5054,13 +4701,16 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains" + "value": "and" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } } }, "directives": [] @@ -5069,208 +4719,147 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains_nocase" + "value": "or" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "AuditInformation_orderBy" + }, + "values": [ { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__blockNumber" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_ends_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__transactionHash" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_ends_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__transactionTimestamp" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__fromAddress" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "creation__toAddress" }, "directives": [] }, { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "_change_block" + "value": "creation__valueTransferred" }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BlockChangedFilter" - } + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "creation__gasPrice" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "and" + "value": "lastModification" }, - "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Module_filter" - } - } + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "lastModification__id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "or" + "value": "lastModification__blockNumber" }, - "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Module_filter" - } - } + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "lastModification__transactionHash" }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "Module_orderBy" - }, - "values": [ + }, { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "lastModification__transactionTimestamp" }, "directives": [] }, @@ -5278,7 +4867,7 @@ const schemaAST = { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "moduleAddress" + "value": "lastModification__fromAddress" }, "directives": [] }, @@ -5286,7 +4875,7 @@ const schemaAST = { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "lastModification__toAddress" }, "directives": [] }, @@ -5294,30 +4883,15 @@ const schemaAST = { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "lastModification__valueTransferred" }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "description": { - "kind": "StringValue", - "value": "Defines the order direction, either ascending or descending", - "block": true - }, - "name": { - "kind": "Name", - "value": "OrderDirection" - }, - "values": [ + }, { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "asc" + "value": "lastModification__gasPrice" }, "directives": [] }, @@ -5325,7 +4899,7 @@ const schemaAST = { "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "desc" + "value": "modifications" }, "directives": [] } @@ -5333,186 +4907,155 @@ const schemaAST = { "directives": [] }, { - "kind": "ObjectTypeDefinition", + "kind": "InputObjectTypeDefinition", "name": { "kind": "Name", - "value": "Portal" + "value": "Audit_filter" }, "fields": [ { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", "value": "id" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress" + "value": "id_not" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "id_gt" }, - "arguments": [], "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "isRevocable" + "value": "id_lt" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Boolean" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "id_gte" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "id_lte" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName" + "value": "id_in" }, - "arguments": [], "type": { - "kind": "NonNullType", + "kind": "ListType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } } } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter" + "value": "id_not_in" }, - "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } } }, "directives": [] - } - ], - "interfaces": [], - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Portal_filter" - }, - "fields": [ + }, { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "blockNumber" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5521,13 +5064,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not" + "value": "blockNumber_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5536,13 +5079,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gt" + "value": "blockNumber_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5551,13 +5094,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lt" + "value": "blockNumber_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5566,13 +5109,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gte" + "value": "blockNumber_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5581,13 +5124,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lte" + "value": "blockNumber_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } }, "directives": [] @@ -5596,7 +5139,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_in" + "value": "blockNumber_in" }, "type": { "kind": "ListType", @@ -5606,7 +5149,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } } } @@ -5617,7 +5160,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not_in" + "value": "blockNumber_not_in" }, "type": { "kind": "ListType", @@ -5627,7 +5170,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "BigInt" } } } @@ -5638,7 +5181,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress" + "value": "transactionHash" }, "type": { "kind": "NamedType", @@ -5653,7 +5196,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_not" + "value": "transactionHash_not" }, "type": { "kind": "NamedType", @@ -5668,7 +5211,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_gt" + "value": "transactionHash_gt" }, "type": { "kind": "NamedType", @@ -5683,7 +5226,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_lt" + "value": "transactionHash_lt" }, "type": { "kind": "NamedType", @@ -5698,7 +5241,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_gte" + "value": "transactionHash_gte" }, "type": { "kind": "NamedType", @@ -5713,7 +5256,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_lte" + "value": "transactionHash_lte" }, "type": { "kind": "NamedType", @@ -5728,7 +5271,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_in" + "value": "transactionHash_in" }, "type": { "kind": "ListType", @@ -5749,7 +5292,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_not_in" + "value": "transactionHash_not_in" }, "type": { "kind": "ListType", @@ -5770,7 +5313,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_contains" + "value": "transactionHash_contains" }, "type": { "kind": "NamedType", @@ -5785,7 +5328,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress_not_contains" + "value": "transactionHash_not_contains" }, "type": { "kind": "NamedType", @@ -5800,19 +5343,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "transactionTimestamp" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -5821,19 +5358,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules_not" + "value": "transactionTimestamp_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -5842,19 +5373,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules_contains" + "value": "transactionTimestamp_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -5863,19 +5388,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules_contains_nocase" + "value": "transactionTimestamp_lt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -5884,19 +5403,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules_not_contains" + "value": "transactionTimestamp_gte" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Bytes" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" } }, "directives": [] @@ -5905,7 +5418,22 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules_not_contains_nocase" + "value": "transactionTimestamp_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "transactionTimestamp_in" }, "type": { "kind": "ListType", @@ -5915,7 +5443,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Bytes" + "value": "BigInt" } } } @@ -5926,58 +5454,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "isRevocable" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Boolean" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "isRevocable_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Boolean" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "isRevocable_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Boolean" - } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "isRevocable_not_in" + "value": "transactionTimestamp_not_in" }, "type": { "kind": "ListType", @@ -5987,7 +5464,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Boolean" + "value": "BigInt" } } } @@ -5998,13 +5475,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "fromAddress" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6013,13 +5490,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not" + "value": "fromAddress_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6028,13 +5505,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gt" + "value": "fromAddress_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6043,13 +5520,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lt" + "value": "fromAddress_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6058,13 +5535,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gte" + "value": "fromAddress_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6073,13 +5550,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lte" + "value": "fromAddress_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6088,7 +5565,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_in" + "value": "fromAddress_in" }, "type": { "kind": "ListType", @@ -6098,7 +5575,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } } } @@ -6109,7 +5586,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_in" + "value": "fromAddress_not_in" }, "type": { "kind": "ListType", @@ -6119,7 +5596,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } } } @@ -6130,13 +5607,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains" + "value": "fromAddress_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6145,13 +5622,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains_nocase" + "value": "fromAddress_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6160,13 +5637,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains" + "value": "toAddress" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6175,13 +5652,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains_nocase" + "value": "toAddress_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6190,13 +5667,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with" + "value": "toAddress_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6205,13 +5682,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with_nocase" + "value": "toAddress_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6220,13 +5697,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with" + "value": "toAddress_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6235,13 +5712,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with_nocase" + "value": "toAddress_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6250,13 +5727,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with" + "value": "toAddress_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } } }, "directives": [] @@ -6265,13 +5748,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with_nocase" + "value": "toAddress_not_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } } }, "directives": [] @@ -6280,13 +5769,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with" + "value": "toAddress_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6295,13 +5784,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with_nocase" + "value": "toAddress_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6310,13 +5799,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "valueTransferred" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6325,13 +5814,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not" + "value": "valueTransferred_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6340,13 +5829,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gt" + "value": "valueTransferred_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6355,13 +5844,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lt" + "value": "valueTransferred_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6370,13 +5859,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gte" + "value": "valueTransferred_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6385,13 +5874,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lte" + "value": "valueTransferred_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6400,7 +5889,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_in" + "value": "valueTransferred_in" }, "type": { "kind": "ListType", @@ -6410,7 +5899,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } } } @@ -6421,7 +5910,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_in" + "value": "valueTransferred_not_in" }, "type": { "kind": "ListType", @@ -6431,7 +5920,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } } } @@ -6442,13 +5931,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_contains" + "value": "gasPrice" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6457,13 +5946,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_contains_nocase" + "value": "gasPrice_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6472,13 +5961,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains" + "value": "gasPrice_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6487,13 +5976,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains_nocase" + "value": "gasPrice_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6502,13 +5991,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with" + "value": "gasPrice_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6517,13 +6006,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with_nocase" + "value": "gasPrice_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BigInt" } }, "directives": [] @@ -6532,13 +6021,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with" + "value": "gasPrice_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + } } }, "directives": [] @@ -6547,28 +6042,39 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with_nocase" + "value": "gasPrice_not_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + } } }, "directives": [] }, { "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, "name": { "kind": "Name", - "value": "description_ends_with" + "value": "_change_block" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BlockChangedFilter" } }, "directives": [] @@ -6577,13 +6083,16 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_ends_with_nocase" + "value": "and" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_filter" + } } }, "directives": [] @@ -6592,175 +6101,159 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with" + "value": "or" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_filter" + } } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Audit_orderBy" + }, + "values": [ { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "blockNumber" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_not" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "transactionHash" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_gt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "transactionTimestamp" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_lt" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "fromAddress" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_gte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "toAddress" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_lte" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "valueTransferred" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "ownerName_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } - } - } + "value": "gasPrice" }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "ScalarTypeDefinition", + "name": { + "kind": "Name", + "value": "BigDecimal" + }, + "directives": [] + }, + { + "kind": "ScalarTypeDefinition", + "name": { + "kind": "Name", + "value": "BigInt" + }, + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + }, + "fields": [ { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_not_in" + "value": "number_gte" }, "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" } } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Block_height" + }, + "fields": [ { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_contains" + "value": "hash" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Bytes" } }, "directives": [] @@ -6769,13 +6262,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_contains_nocase" + "value": "number" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -6784,103 +6277,140 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_not_contains" + "value": "number_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "ScalarTypeDefinition", + "name": { + "kind": "Name", + "value": "Bytes" + }, + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Counter" + }, + "fields": [ { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "ownerName_not_contains_nocase" + "value": "id" }, + "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "ownerName_starts_with" + "value": "attestations" }, + "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "ownerName_starts_with_nocase" + "value": "modules" }, + "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "ownerName_not_starts_with" + "value": "portals" }, + "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "ownerName_not_starts_with_nocase" + "value": "schemas" }, + "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] - }, + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Counter_filter" + }, + "fields": [ { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_ends_with" + "value": "id" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "ID" } }, "directives": [] @@ -6889,13 +6419,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_ends_with_nocase" + "value": "id_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "ID" } }, "directives": [] @@ -6904,13 +6434,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_not_ends_with" + "value": "id_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "ID" } }, "directives": [] @@ -6919,13 +6449,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName_not_ends_with_nocase" + "value": "id_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "ID" } }, "directives": [] @@ -6934,13 +6464,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter" + "value": "id_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "ID" } }, "directives": [] @@ -6949,13 +6479,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_not" + "value": "id_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "ID" } }, "directives": [] @@ -6964,11 +6494,53 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_gt" + "value": "id_in" }, "type": { - "kind": "NamedType", - "name": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestations" + }, + "type": { + "kind": "NamedType", + "name": { "kind": "Name", "value": "Int" } @@ -6979,7 +6551,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_lt" + "value": "attestations_not" }, "type": { "kind": "NamedType", @@ -6994,7 +6566,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_gte" + "value": "attestations_gt" }, "type": { "kind": "NamedType", @@ -7009,7 +6581,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_lte" + "value": "attestations_lt" }, "type": { "kind": "NamedType", @@ -7024,7 +6596,37 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_in" + "value": "attestations_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestations_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestations_in" }, "type": { "kind": "ListType", @@ -7045,7 +6647,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter_not_in" + "value": "attestations_not_in" }, "type": { "kind": "ListType", @@ -7064,20 +6666,15 @@ const schemaAST = { }, { "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, "name": { "kind": "Name", - "value": "_change_block" + "value": "modules" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BlockChangedFilter" + "value": "Int" } }, "directives": [] @@ -7086,16 +6683,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "and" + "value": "modules_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" } }, "directives": [] @@ -7104,658 +6698,512 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "or" + "value": "modules_gt" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "Portal_orderBy" - }, - "values": [ + }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "modules_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerAddress" + "value": "modules_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "modules_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "isRevocable" + "value": "modules_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "modules_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "portals" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "ownerName" + "value": "portals_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter" + "value": "portals_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Query" - }, - "fields": [ + }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestation" + "value": "portals_lt" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "portals_gte" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Attestation" + "value": "Int" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestations" + "value": "portals_lte" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "portals_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "portals_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Attestation_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Attestation_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] - } - ], - "type": { - "kind": "NonNullType", - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Attestation" - } - } } } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "module" + "value": "schemas" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_not" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Module" + "value": "Int" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "schemas_gt" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "schemas_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, + "name": { + "kind": "Name", + "value": "_change_block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "and" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Module_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", + "value": "Counter_filter" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "or" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Module_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] - } - ], - "type": { - "kind": "NonNullType", - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Module" - } - } + "value": "Counter_filter" } } }, "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Counter_orderBy" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "attestations" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "modules" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "portals" + }, + "directives": [] }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "schemas" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ScalarTypeDefinition", + "description": { + "kind": "StringValue", + "value": "8 bytes signed integer\n", + "block": true + }, + "name": { + "kind": "Name", + "value": "Int8" + }, + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Issuer" + }, + "fields": [ { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "portal" + "value": "id" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] - } - ], - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal" + "value": "ID" + } } }, "directives": [] @@ -7764,390 +7212,137 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "portals" + "value": "auditInformation" }, - "arguments": [ - { - "kind": "InputValueDefinition", + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "skip" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "value": "AuditInformation" + } } - ], + }, + "directives": [] + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Issuer_filter" + }, + "fields": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, "type": { - "kind": "NonNullType", - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Portal" - } - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema" + "value": "id_not" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gt" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Schema" + "value": "ID" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schemas" + "value": "id_lt" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Schema_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Schema_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gte" + }, "type": { - "kind": "NonNullType", + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_in" + }, + "type": { + "kind": "ListType", "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Schema" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" } } } @@ -8155,475 +7350,131 @@ const schemaAST = { "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "counter" + "value": "id_not_in" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } + "value": "ID" } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + } } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Counter" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "counters" + "value": "auditInformation_not" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Counter_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Counter_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gt" + }, "type": { - "kind": "NonNullType", - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Counter" - } - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "issuer" + "value": "auditInformation_lt" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gte" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Issuer" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "issuers" + "value": "auditInformation_lte" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "first" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Issuer_orderBy" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "OrderDirection" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Issuer_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_in" + }, "type": { - "kind": "NonNullType", + "kind": "ListType", "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Issuer" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } } } @@ -8631,238 +7482,7195 @@ const schemaAST = { "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "registryVersion" + "value": "auditInformation_not_in" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, - "name": { - "kind": "Name", - "value": "block" - }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, - "name": { - "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } + "value": "String" } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + } } - ], + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion" + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "registryVersions" + "value": "auditInformation_contains_nocase" }, - "arguments": [ - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "skip" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } - }, - "defaultValue": { - "kind": "IntValue", - "value": "0" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, + "name": { + "kind": "Name", + "value": "_change_block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "and" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "first" - }, + "value": "Issuer_filter" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "or" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Issuer_filter" + } + } + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Issuer_orderBy" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation__id" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Module" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } + } + }, + "directives": [] + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Module_filter" + }, + "fields": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, + "name": { + "kind": "Name", + "value": "_change_block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "and" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module_filter" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "or" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module_filter" + } + } + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Module_orderBy" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "moduleAddress" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation__id" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "description": { + "kind": "StringValue", + "value": "Defines the order direction, either ascending or descending", + "block": true + }, + "name": { + "kind": "Name", + "value": "OrderDirection" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "asc" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "desc" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Portal" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "modules" + }, + "arguments": [], + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "isRevocable" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "ownerName" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter" + }, + "arguments": [], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } + } + }, + "directives": [] + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Portal_filter" + }, + "fields": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules_not" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules_contains" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules_contains_nocase" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules_not_contains" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "modules_not_contains_nocase" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Bytes" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "isRevocable" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "isRevocable_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "isRevocable_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "isRevocable_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Boolean" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, + "name": { + "kind": "Name", + "value": "_change_block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "and" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal_filter" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "or" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal_filter" + } + } + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Portal_orderBy" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "ownerAddress" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "modules" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "isRevocable" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "description" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "ownerName" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "attestationCounter" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation__id" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Query" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "attestation" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "attestations" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "module" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "modules" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "portal" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "portals" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Portal" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "schema" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "schemas" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "counter" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Counter" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "counters" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Counter_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Counter_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Counter" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "issuer" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Issuer" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "issuers" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Issuer_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Issuer_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Issuer" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "registryVersion" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "RegistryVersion" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "registryVersions" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "RegistryVersion_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "RegistryVersion_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "RegistryVersion" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "auditInformations" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "audit" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "audits" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], + "type": { + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Audit" + } + } + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "description": { + "kind": "StringValue", + "value": "Access to subgraph metadata", + "block": true + }, + "name": { + "kind": "Name", + "value": "_meta" + }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + } + ], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_Meta_" + } + }, + "directives": [] + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "RegistryVersion" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "versionNumber" + }, + "arguments": [], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "timestamp" + }, + "arguments": [], + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } + } + }, + "directives": [] + } + ], + "interfaces": [], + "directives": [] + }, + { + "kind": "InputObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "RegistryVersion_filter" + }, + "fields": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BigInt" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "BigInt" } - }, - "defaultValue": { - "kind": "IntValue", - "value": "100" - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderBy" - }, + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion_orderBy" + "value": "BigInt" } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "orderDirection" - }, + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_lte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "OrderDirection" + "value": "String" } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_in" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_contains_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_starts_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation_" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, + "name": { + "kind": "Name", + "value": "_change_block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "BlockChangedFilter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "and" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "where" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "RegistryVersion_filter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "block": true - }, + "value": "RegistryVersion_filter" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "or" + }, + "type": { + "kind": "ListType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "block": true - }, + "value": "RegistryVersion_filter" + } + } + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "RegistryVersion_orderBy" + }, + "values": [ + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "versionNumber" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "timestamp" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation" + }, + "directives": [] + }, + { + "kind": "EnumValueDefinition", + "name": { + "kind": "Name", + "value": "auditInformation__id" + }, + "directives": [] + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Schema" + }, + "fields": [ + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "subgraphError" - }, - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_SubgraphErrorPolicy_" - } - } - }, - "defaultValue": { - "kind": "EnumValue", - "value": "deny" - }, - "directives": [] + "value": "ID" + } } - ], + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "name" + }, + "arguments": [], "type": { "kind": "NonNullType", "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "RegistryVersion" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } } }, @@ -8870,57 +14678,47 @@ const schemaAST = { }, { "kind": "FieldDefinition", - "description": { - "kind": "StringValue", - "value": "Access to subgraph metadata", - "block": true - }, "name": { "kind": "Name", - "value": "_meta" + "value": "description" }, - "arguments": [ - { - "kind": "InputValueDefinition", + "arguments": [], + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", "name": { "kind": "Name", - "value": "block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Block_height" - } - }, - "directives": [] + "value": "String" + } } - ], + }, + "directives": [] + }, + { + "kind": "FieldDefinition", + "name": { + "kind": "Name", + "value": "context" + }, + "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "_Meta_" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } } }, "directives": [] - } - ], - "interfaces": [], - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "RegistryVersion" - }, - "fields": [ + }, { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "id" + "value": "schema" }, "arguments": [], "type": { @@ -8929,7 +14727,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } } }, @@ -8939,7 +14737,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "versionNumber" + "value": "attestationCounter" }, "arguments": [], "type": { @@ -8955,14 +14753,17 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "timestamp" + "value": "auditInformation" }, "arguments": [], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "AuditInformation" + } } }, "directives": [] @@ -8975,7 +14776,7 @@ const schemaAST = { "kind": "InputObjectTypeDefinition", "name": { "kind": "Name", - "value": "RegistryVersion_filter" + "value": "Schema_filter" }, "fields": [ { @@ -9114,13 +14915,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber" + "value": "name" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9129,13 +14930,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_not" + "value": "name_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9144,13 +14945,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_gt" + "value": "name_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9159,13 +14960,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_lt" + "value": "name_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9174,13 +14975,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_gte" + "value": "name_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9189,13 +14990,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_lte" + "value": "name_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] @@ -9204,7 +15005,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_in" + "value": "name_in" }, "type": { "kind": "ListType", @@ -9214,7 +15015,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } } } @@ -9225,7 +15026,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber_not_in" + "value": "name_not_in" }, "type": { "kind": "ListType", @@ -9235,7 +15036,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } } } @@ -9246,13 +15047,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp" + "value": "name_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9261,13 +15062,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_not" + "value": "name_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9276,13 +15077,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_gt" + "value": "name_not_contains" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9291,13 +15092,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_lt" + "value": "name_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9306,13 +15107,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_gte" + "value": "name_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9321,13 +15122,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_lte" + "value": "name_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BigInt" + "value": "String" } }, "directives": [] @@ -9336,19 +15137,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_in" + "value": "name_not_starts_with" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -9357,39 +15152,73 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp_not_in" + "value": "name_not_starts_with_nocase" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BigInt" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "name_not_ends_with" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, "name": { "kind": "Name", - "value": "_change_block" + "value": "name_not_ends_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "BlockChangedFilter" + "value": "String" } }, "directives": [] @@ -9398,16 +15227,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "and" + "value": "description" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "RegistryVersion_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -9416,197 +15242,175 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "or" + "value": "description_not" }, "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "RegistryVersion_filter" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "RegistryVersion_orderBy" - }, - "values": [ + }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "description_gt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "versionNumber" + "value": "description_lt" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] }, { - "kind": "EnumValueDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "timestamp" + "value": "description_gte" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Schema" - }, - "fields": [ + }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "description_lte" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "description_in" }, - "arguments": [], "type": { - "kind": "NonNullType", + "kind": "ListType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } } } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "description_not_in" }, - "arguments": [], "type": { - "kind": "NonNullType", + "kind": "ListType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } } } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context" + "value": "description_contains" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema" + "value": "description_contains_nocase" }, - "arguments": [], "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] }, { - "kind": "FieldDefinition", + "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter" + "value": "description_not_contains" }, - "arguments": [], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "String" } }, "directives": [] - } - ], - "interfaces": [], - "directives": [] - }, - { - "kind": "InputObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Schema_filter" - }, - "fields": [ + }, { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id" + "value": "description_not_contains_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9615,13 +15419,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not" + "value": "description_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9630,13 +15434,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gt" + "value": "description_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9645,13 +15449,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lt" + "value": "description_not_starts_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9660,13 +15464,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_gte" + "value": "description_not_starts_with_nocase" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9675,13 +15479,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_lte" + "value": "description_ends_with" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "ID" + "value": "String" } }, "directives": [] @@ -9690,19 +15494,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_in" + "value": "description_ends_with_nocase" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -9711,19 +15509,28 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "id_not_in" + "value": "description_not_ends_with" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "ID" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "description_not_ends_with_nocase" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -9732,7 +15539,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name" + "value": "context" }, "type": { "kind": "NamedType", @@ -9747,7 +15554,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not" + "value": "context_not" }, "type": { "kind": "NamedType", @@ -9762,7 +15569,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gt" + "value": "context_gt" }, "type": { "kind": "NamedType", @@ -9777,7 +15584,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lt" + "value": "context_lt" }, "type": { "kind": "NamedType", @@ -9792,7 +15599,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_gte" + "value": "context_gte" }, "type": { "kind": "NamedType", @@ -9807,7 +15614,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_lte" + "value": "context_lte" }, "type": { "kind": "NamedType", @@ -9822,7 +15629,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_in" + "value": "context_in" }, "type": { "kind": "ListType", @@ -9843,7 +15650,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_in" + "value": "context_not_in" }, "type": { "kind": "ListType", @@ -9864,7 +15671,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains" + "value": "context_contains" }, "type": { "kind": "NamedType", @@ -9879,7 +15686,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_contains_nocase" + "value": "context_contains_nocase" }, "type": { "kind": "NamedType", @@ -9894,7 +15701,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains" + "value": "context_not_contains" }, "type": { "kind": "NamedType", @@ -9909,7 +15716,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_contains_nocase" + "value": "context_not_contains_nocase" }, "type": { "kind": "NamedType", @@ -9924,7 +15731,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with" + "value": "context_starts_with" }, "type": { "kind": "NamedType", @@ -9939,7 +15746,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_starts_with_nocase" + "value": "context_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -9954,7 +15761,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with" + "value": "context_not_starts_with" }, "type": { "kind": "NamedType", @@ -9969,7 +15776,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_starts_with_nocase" + "value": "context_not_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -9984,7 +15791,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with" + "value": "context_ends_with" }, "type": { "kind": "NamedType", @@ -9999,7 +15806,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_ends_with_nocase" + "value": "context_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10014,7 +15821,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with" + "value": "context_not_ends_with" }, "type": { "kind": "NamedType", @@ -10029,7 +15836,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "name_not_ends_with_nocase" + "value": "context_not_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10044,7 +15851,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description" + "value": "schema" }, "type": { "kind": "NamedType", @@ -10059,7 +15866,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not" + "value": "schema_not" }, "type": { "kind": "NamedType", @@ -10074,7 +15881,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gt" + "value": "schema_gt" }, "type": { "kind": "NamedType", @@ -10089,7 +15896,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lt" + "value": "schema_lt" }, "type": { "kind": "NamedType", @@ -10104,7 +15911,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_gte" + "value": "schema_gte" }, "type": { "kind": "NamedType", @@ -10119,7 +15926,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_lte" + "value": "schema_lte" }, "type": { "kind": "NamedType", @@ -10134,7 +15941,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_in" + "value": "schema_in" }, "type": { "kind": "ListType", @@ -10155,7 +15962,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_in" + "value": "schema_not_in" }, "type": { "kind": "ListType", @@ -10176,7 +15983,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_contains" + "value": "schema_contains" }, "type": { "kind": "NamedType", @@ -10191,7 +15998,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_contains_nocase" + "value": "schema_contains_nocase" }, "type": { "kind": "NamedType", @@ -10206,7 +16013,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains" + "value": "schema_not_contains" }, "type": { "kind": "NamedType", @@ -10221,7 +16028,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_contains_nocase" + "value": "schema_not_contains_nocase" }, "type": { "kind": "NamedType", @@ -10236,7 +16043,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with" + "value": "schema_starts_with" }, "type": { "kind": "NamedType", @@ -10251,7 +16058,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_starts_with_nocase" + "value": "schema_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -10266,7 +16073,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with" + "value": "schema_not_starts_with" }, "type": { "kind": "NamedType", @@ -10281,7 +16088,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_starts_with_nocase" + "value": "schema_not_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -10296,7 +16103,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_ends_with" + "value": "schema_ends_with" }, "type": { "kind": "NamedType", @@ -10311,7 +16118,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_ends_with_nocase" + "value": "schema_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10326,7 +16133,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with" + "value": "schema_not_ends_with" }, "type": { "kind": "NamedType", @@ -10341,7 +16148,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "description_not_ends_with_nocase" + "value": "schema_not_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10356,13 +16163,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context" + "value": "attestationCounter" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10371,13 +16178,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not" + "value": "attestationCounter_not" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10386,13 +16193,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_gt" + "value": "attestationCounter_gt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10401,13 +16208,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_lt" + "value": "attestationCounter_lt" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10416,13 +16223,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_gte" + "value": "attestationCounter_gte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10431,13 +16238,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_lte" + "value": "attestationCounter_lte" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } }, "directives": [] @@ -10446,7 +16253,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_in" + "value": "attestationCounter_in" }, "type": { "kind": "ListType", @@ -10456,7 +16263,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } } } @@ -10467,7 +16274,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_in" + "value": "attestationCounter_not_in" }, "type": { "kind": "ListType", @@ -10477,7 +16284,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "Int" } } } @@ -10488,7 +16295,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_contains" + "value": "auditInformation" }, "type": { "kind": "NamedType", @@ -10503,7 +16310,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_contains_nocase" + "value": "auditInformation_not" }, "type": { "kind": "NamedType", @@ -10518,7 +16325,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_contains" + "value": "auditInformation_gt" }, "type": { "kind": "NamedType", @@ -10533,7 +16340,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_contains_nocase" + "value": "auditInformation_lt" }, "type": { "kind": "NamedType", @@ -10548,7 +16355,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_starts_with" + "value": "auditInformation_gte" }, "type": { "kind": "NamedType", @@ -10563,7 +16370,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_starts_with_nocase" + "value": "auditInformation_lte" }, "type": { "kind": "NamedType", @@ -10578,13 +16385,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_starts_with" + "value": "auditInformation_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -10593,13 +16406,19 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_starts_with_nocase" + "value": "auditInformation_not_in" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" + } + } } }, "directives": [] @@ -10608,7 +16427,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_ends_with" + "value": "auditInformation_contains" }, "type": { "kind": "NamedType", @@ -10623,7 +16442,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_ends_with_nocase" + "value": "auditInformation_contains_nocase" }, "type": { "kind": "NamedType", @@ -10638,7 +16457,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_ends_with" + "value": "auditInformation_not_contains" }, "type": { "kind": "NamedType", @@ -10653,7 +16472,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "context_not_ends_with_nocase" + "value": "auditInformation_not_contains_nocase" }, "type": { "kind": "NamedType", @@ -10668,7 +16487,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema" + "value": "auditInformation_starts_with" }, "type": { "kind": "NamedType", @@ -10683,7 +16502,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_not" + "value": "auditInformation_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -10698,7 +16517,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_gt" + "value": "auditInformation_not_starts_with" }, "type": { "kind": "NamedType", @@ -10713,7 +16532,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_lt" + "value": "auditInformation_not_starts_with_nocase" }, "type": { "kind": "NamedType", @@ -10728,7 +16547,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_gte" + "value": "auditInformation_ends_with" }, "type": { "kind": "NamedType", @@ -10743,7 +16562,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_lte" + "value": "auditInformation_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10758,40 +16577,13 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "schema_not_in" + "value": "auditInformation_not_ends_with" }, "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } - } + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "String" } }, "directives": [] @@ -10800,7 +16592,7 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_contains" + "value": "auditInformation_not_ends_with_nocase" }, "type": { "kind": "NamedType", @@ -10815,28 +16607,33 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_contains_nocase" + "value": "auditInformation_" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "AuditInformation_filter" } }, "directives": [] }, { "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Filter for the block changed event.", + "block": true + }, "name": { "kind": "Name", - "value": "schema_not_contains" + "value": "_change_block" }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "String" + "value": "BlockChangedFilter" } }, "directives": [] @@ -10845,13 +16642,16 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_not_contains_nocase" + "value": "and" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema_filter" + } } }, "directives": [] @@ -10860,383 +16660,585 @@ const schemaAST = { "kind": "InputValueDefinition", "name": { "kind": "Name", - "value": "schema_starts_with" + "value": "or" }, "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" + "kind": "ListType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Schema_filter" + } } }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "EnumTypeDefinition", + "name": { + "kind": "Name", + "value": "Schema_orderBy" + }, + "values": [ { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_starts_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "id" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_not_starts_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "name" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_not_starts_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "description" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_ends_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "context" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_ends_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "schema" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_not_ends_with" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "attestationCounter" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "schema_not_ends_with_nocase" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "String" - } + "value": "auditInformation" }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "EnumValueDefinition", "name": { "kind": "Name", - "value": "attestationCounter" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" - } + "value": "auditInformation__id" }, "directives": [] - }, + } + ], + "directives": [] + }, + { + "kind": "ObjectTypeDefinition", + "name": { + "kind": "Name", + "value": "Subscription" + }, + "fields": [ { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestationCounter_not" + "value": "attestation" }, + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] + } + ], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "Attestation" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestationCounter_gt" + "value": "attestations" }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation_filter" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "attestationCounter_lt" - }, + ], "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "kind": "NonNullType", + "type": { + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Attestation" + } + } + } } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestationCounter_gte" + "value": "module" }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Int" + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "id" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "ID" + } + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, + "name": { + "kind": "Name", + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "attestationCounter_lte" - }, + ], "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "Module" } }, "directives": [] }, { - "kind": "InputValueDefinition", + "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestationCounter_in" + "value": "modules" }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", + "arguments": [ + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "skip" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", "value": "Int" } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "attestationCounter_not_in" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NonNullType", + }, + "defaultValue": { + "kind": "IntValue", + "value": "0" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "first" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Int" + } + }, + "defaultValue": { + "kind": "IntValue", + "value": "100" + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderBy" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module_orderBy" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "orderDirection" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "OrderDirection" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "name": { + "kind": "Name", + "value": "where" + }, "type": { "kind": "NamedType", "name": { "kind": "Name", - "value": "Int" + "value": "Module_filter" } - } - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "description": { - "kind": "StringValue", - "value": "Filter for the block changed event.", - "block": true - }, - "name": { - "kind": "Name", - "value": "_change_block" - }, - "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "BlockChangedFilter" - } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "and" - }, - "type": { - "kind": "ListType", - "type": { - "kind": "NamedType", + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "block": true + }, "name": { "kind": "Name", - "value": "Schema_filter" - } + "value": "block" + }, + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Block_height" + } + }, + "directives": [] + }, + { + "kind": "InputValueDefinition", + "description": { + "kind": "StringValue", + "value": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "block": true + }, + "name": { + "kind": "Name", + "value": "subgraphError" + }, + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "_SubgraphErrorPolicy_" + } + } + }, + "defaultValue": { + "kind": "EnumValue", + "value": "deny" + }, + "directives": [] } - }, - "directives": [] - }, - { - "kind": "InputValueDefinition", - "name": { - "kind": "Name", - "value": "or" - }, + ], "type": { - "kind": "ListType", + "kind": "NonNullType", "type": { - "kind": "NamedType", - "name": { - "kind": "Name", - "value": "Schema_filter" + "kind": "ListType", + "type": { + "kind": "NonNullType", + "type": { + "kind": "NamedType", + "name": { + "kind": "Name", + "value": "Module" + } + } } } }, "directives": [] - } - ], - "directives": [] - }, - { - "kind": "EnumTypeDefinition", - "name": { - "kind": "Name", - "value": "Schema_orderBy" - }, - "values": [ - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "id" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "name" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "description" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "context" - }, - "directives": [] - }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "schema" - }, - "directives": [] }, - { - "kind": "EnumValueDefinition", - "name": { - "kind": "Name", - "value": "attestationCounter" - }, - "directives": [] - } - ], - "directives": [] - }, - { - "kind": "ObjectTypeDefinition", - "name": { - "kind": "Name", - "value": "Subscription" - }, - "fields": [ { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestation" + "value": "portal" }, "arguments": [ { @@ -11309,7 +17311,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Attestation" + "value": "Portal" } }, "directives": [] @@ -11318,7 +17320,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "attestations" + "value": "portals" }, "arguments": [ { @@ -11369,7 +17371,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Attestation_orderBy" + "value": "Portal_orderBy" } }, "directives": [] @@ -11399,7 +17401,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Attestation_filter" + "value": "Portal_filter" } }, "directives": [] @@ -11462,7 +17464,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Attestation" + "value": "Portal" } } } @@ -11474,7 +17476,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "module" + "value": "schema" }, "arguments": [ { @@ -11547,7 +17549,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Module" + "value": "Schema" } }, "directives": [] @@ -11556,7 +17558,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "modules" + "value": "schemas" }, "arguments": [ { @@ -11607,7 +17609,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Module_orderBy" + "value": "Schema_orderBy" } }, "directives": [] @@ -11637,7 +17639,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Module_filter" + "value": "Schema_filter" } }, "directives": [] @@ -11700,7 +17702,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Module" + "value": "Schema" } } } @@ -11712,7 +17714,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "portal" + "value": "counter" }, "arguments": [ { @@ -11785,7 +17787,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Portal" + "value": "Counter" } }, "directives": [] @@ -11794,7 +17796,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "portals" + "value": "counters" }, "arguments": [ { @@ -11845,7 +17847,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Portal_orderBy" + "value": "Counter_orderBy" } }, "directives": [] @@ -11875,7 +17877,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Portal_filter" + "value": "Counter_filter" } }, "directives": [] @@ -11938,7 +17940,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Portal" + "value": "Counter" } } } @@ -11950,7 +17952,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schema" + "value": "issuer" }, "arguments": [ { @@ -12023,7 +18025,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Schema" + "value": "Issuer" } }, "directives": [] @@ -12032,7 +18034,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "schemas" + "value": "issuers" }, "arguments": [ { @@ -12083,7 +18085,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Schema_orderBy" + "value": "Issuer_orderBy" } }, "directives": [] @@ -12113,7 +18115,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Schema_filter" + "value": "Issuer_filter" } }, "directives": [] @@ -12176,7 +18178,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Schema" + "value": "Issuer" } } } @@ -12188,7 +18190,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "counter" + "value": "registryVersion" }, "arguments": [ { @@ -12261,7 +18263,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Counter" + "value": "RegistryVersion" } }, "directives": [] @@ -12270,7 +18272,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "counters" + "value": "registryVersions" }, "arguments": [ { @@ -12321,7 +18323,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Counter_orderBy" + "value": "RegistryVersion_orderBy" } }, "directives": [] @@ -12351,7 +18353,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Counter_filter" + "value": "RegistryVersion_filter" } }, "directives": [] @@ -12414,7 +18416,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Counter" + "value": "RegistryVersion" } } } @@ -12426,7 +18428,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "issuer" + "value": "auditInformation" }, "arguments": [ { @@ -12499,7 +18501,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Issuer" + "value": "AuditInformation" } }, "directives": [] @@ -12508,7 +18510,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "issuers" + "value": "auditInformations" }, "arguments": [ { @@ -12559,7 +18561,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Issuer_orderBy" + "value": "AuditInformation_orderBy" } }, "directives": [] @@ -12589,7 +18591,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Issuer_filter" + "value": "AuditInformation_filter" } }, "directives": [] @@ -12652,7 +18654,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "Issuer" + "value": "AuditInformation" } } } @@ -12664,7 +18666,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "registryVersion" + "value": "audit" }, "arguments": [ { @@ -12737,7 +18739,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion" + "value": "Audit" } }, "directives": [] @@ -12746,7 +18748,7 @@ const schemaAST = { "kind": "FieldDefinition", "name": { "kind": "Name", - "value": "registryVersions" + "value": "audits" }, "arguments": [ { @@ -12797,7 +18799,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion_orderBy" + "value": "Audit_orderBy" } }, "directives": [] @@ -12827,7 +18829,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion_filter" + "value": "Audit_filter" } }, "directives": [] @@ -12890,7 +18892,7 @@ const schemaAST = { "kind": "NamedType", "name": { "kind": "Name", - "value": "RegistryVersion" + "value": "Audit" } } } diff --git a/sdk/.graphclient/sources/linea-attestation-registry/schema.graphql b/sdk/.graphclient/sources/linea-attestation-registry/schema.graphql index 4e9a5add..69e71632 100644 --- a/sdk/.graphclient/sources/linea-attestation-registry/schema.graphql +++ b/sdk/.graphclient/sources/linea-attestation-registry/schema.graphql @@ -23,10 +23,10 @@ enum Aggregation_interval { type Attestation { id: ID! - schemaId: Bytes! + schema: Schema! replacedBy: Bytes! attester: Bytes! - portal: Bytes! + portal: Portal! attestedDate: BigInt! expirationDate: BigInt! revocationDate: BigInt! @@ -35,8 +35,8 @@ type Attestation { subject: Bytes! encodedSubject: Bytes! attestationData: Bytes! - schemaString: String decodedData: [String!] + auditInformation: AuditInformation! } input Attestation_filter { @@ -48,16 +48,27 @@ input Attestation_filter { id_lte: ID id_in: [ID!] id_not_in: [ID!] - schemaId: Bytes - schemaId_not: Bytes - schemaId_gt: Bytes - schemaId_lt: Bytes - schemaId_gte: Bytes - schemaId_lte: Bytes - schemaId_in: [Bytes!] - schemaId_not_in: [Bytes!] - schemaId_contains: Bytes - schemaId_not_contains: Bytes + schema: String + schema_not: String + schema_gt: String + schema_lt: String + schema_gte: String + schema_lte: String + schema_in: [String!] + schema_not_in: [String!] + schema_contains: String + schema_contains_nocase: String + schema_not_contains: String + schema_not_contains_nocase: String + schema_starts_with: String + schema_starts_with_nocase: String + schema_not_starts_with: String + schema_not_starts_with_nocase: String + schema_ends_with: String + schema_ends_with_nocase: String + schema_not_ends_with: String + schema_not_ends_with_nocase: String + schema_: Schema_filter replacedBy: Bytes replacedBy_not: Bytes replacedBy_gt: Bytes @@ -78,16 +89,27 @@ input Attestation_filter { attester_not_in: [Bytes!] attester_contains: Bytes attester_not_contains: Bytes - portal: Bytes - portal_not: Bytes - portal_gt: Bytes - portal_lt: Bytes - portal_gte: Bytes - portal_lte: Bytes - portal_in: [Bytes!] - portal_not_in: [Bytes!] - portal_contains: Bytes - portal_not_contains: Bytes + portal: String + portal_not: String + portal_gt: String + portal_lt: String + portal_gte: String + portal_lte: String + portal_in: [String!] + portal_not_in: [String!] + portal_contains: String + portal_contains_nocase: String + portal_not_contains: String + portal_not_contains_nocase: String + portal_starts_with: String + portal_starts_with_nocase: String + portal_not_starts_with: String + portal_not_starts_with_nocase: String + portal_ends_with: String + portal_ends_with_nocase: String + portal_not_ends_with: String + portal_not_ends_with_nocase: String + portal_: Portal_filter attestedDate: BigInt attestedDate_not: BigInt attestedDate_gt: BigInt @@ -154,32 +176,33 @@ input Attestation_filter { attestationData_not_in: [Bytes!] attestationData_contains: Bytes attestationData_not_contains: Bytes - schemaString: String - schemaString_not: String - schemaString_gt: String - schemaString_lt: String - schemaString_gte: String - schemaString_lte: String - schemaString_in: [String!] - schemaString_not_in: [String!] - schemaString_contains: String - schemaString_contains_nocase: String - schemaString_not_contains: String - schemaString_not_contains_nocase: String - schemaString_starts_with: String - schemaString_starts_with_nocase: String - schemaString_not_starts_with: String - schemaString_not_starts_with_nocase: String - schemaString_ends_with: String - schemaString_ends_with_nocase: String - schemaString_not_ends_with: String - schemaString_not_ends_with_nocase: String decodedData: [String!] decodedData_not: [String!] decodedData_contains: [String!] decodedData_contains_nocase: [String!] decodedData_not_contains: [String!] decodedData_not_contains_nocase: [String!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Attestation_filter] @@ -188,10 +211,23 @@ input Attestation_filter { enum Attestation_orderBy { id - schemaId + schema + schema__id + schema__name + schema__description + schema__context + schema__schema + schema__attestationCounter replacedBy attester portal + portal__id + portal__ownerAddress + portal__isRevocable + portal__name + portal__description + portal__ownerName + portal__attestationCounter attestedDate expirationDate revocationDate @@ -200,8 +236,202 @@ enum Attestation_orderBy { subject encodedSubject attestationData - schemaString decodedData + auditInformation + auditInformation__id +} + +type Audit { + id: ID! + blockNumber: BigInt! + transactionHash: Bytes! + transactionTimestamp: BigInt! + fromAddress: Bytes! + toAddress: Bytes + valueTransferred: BigInt + gasPrice: BigInt +} + +type AuditInformation { + id: ID! + creation: Audit! + lastModification: Audit! + modifications(skip: Int = 0, first: Int = 100, orderBy: Audit_orderBy, orderDirection: OrderDirection, where: Audit_filter): [Audit!]! +} + +input AuditInformation_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + creation: String + creation_not: String + creation_gt: String + creation_lt: String + creation_gte: String + creation_lte: String + creation_in: [String!] + creation_not_in: [String!] + creation_contains: String + creation_contains_nocase: String + creation_not_contains: String + creation_not_contains_nocase: String + creation_starts_with: String + creation_starts_with_nocase: String + creation_not_starts_with: String + creation_not_starts_with_nocase: String + creation_ends_with: String + creation_ends_with_nocase: String + creation_not_ends_with: String + creation_not_ends_with_nocase: String + creation_: Audit_filter + lastModification: String + lastModification_not: String + lastModification_gt: String + lastModification_lt: String + lastModification_gte: String + lastModification_lte: String + lastModification_in: [String!] + lastModification_not_in: [String!] + lastModification_contains: String + lastModification_contains_nocase: String + lastModification_not_contains: String + lastModification_not_contains_nocase: String + lastModification_starts_with: String + lastModification_starts_with_nocase: String + lastModification_not_starts_with: String + lastModification_not_starts_with_nocase: String + lastModification_ends_with: String + lastModification_ends_with_nocase: String + lastModification_not_ends_with: String + lastModification_not_ends_with_nocase: String + lastModification_: Audit_filter + modifications: [String!] + modifications_not: [String!] + modifications_contains: [String!] + modifications_contains_nocase: [String!] + modifications_not_contains: [String!] + modifications_not_contains_nocase: [String!] + modifications_: Audit_filter + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [AuditInformation_filter] + or: [AuditInformation_filter] +} + +enum AuditInformation_orderBy { + id + creation + creation__id + creation__blockNumber + creation__transactionHash + creation__transactionTimestamp + creation__fromAddress + creation__toAddress + creation__valueTransferred + creation__gasPrice + lastModification + lastModification__id + lastModification__blockNumber + lastModification__transactionHash + lastModification__transactionTimestamp + lastModification__fromAddress + lastModification__toAddress + lastModification__valueTransferred + lastModification__gasPrice + modifications +} + +input Audit_filter { + id: ID + id_not: ID + id_gt: ID + id_lt: ID + id_gte: ID + id_lte: ID + id_in: [ID!] + id_not_in: [ID!] + blockNumber: BigInt + blockNumber_not: BigInt + blockNumber_gt: BigInt + blockNumber_lt: BigInt + blockNumber_gte: BigInt + blockNumber_lte: BigInt + blockNumber_in: [BigInt!] + blockNumber_not_in: [BigInt!] + transactionHash: Bytes + transactionHash_not: Bytes + transactionHash_gt: Bytes + transactionHash_lt: Bytes + transactionHash_gte: Bytes + transactionHash_lte: Bytes + transactionHash_in: [Bytes!] + transactionHash_not_in: [Bytes!] + transactionHash_contains: Bytes + transactionHash_not_contains: Bytes + transactionTimestamp: BigInt + transactionTimestamp_not: BigInt + transactionTimestamp_gt: BigInt + transactionTimestamp_lt: BigInt + transactionTimestamp_gte: BigInt + transactionTimestamp_lte: BigInt + transactionTimestamp_in: [BigInt!] + transactionTimestamp_not_in: [BigInt!] + fromAddress: Bytes + fromAddress_not: Bytes + fromAddress_gt: Bytes + fromAddress_lt: Bytes + fromAddress_gte: Bytes + fromAddress_lte: Bytes + fromAddress_in: [Bytes!] + fromAddress_not_in: [Bytes!] + fromAddress_contains: Bytes + fromAddress_not_contains: Bytes + toAddress: Bytes + toAddress_not: Bytes + toAddress_gt: Bytes + toAddress_lt: Bytes + toAddress_gte: Bytes + toAddress_lte: Bytes + toAddress_in: [Bytes!] + toAddress_not_in: [Bytes!] + toAddress_contains: Bytes + toAddress_not_contains: Bytes + valueTransferred: BigInt + valueTransferred_not: BigInt + valueTransferred_gt: BigInt + valueTransferred_lt: BigInt + valueTransferred_gte: BigInt + valueTransferred_lte: BigInt + valueTransferred_in: [BigInt!] + valueTransferred_not_in: [BigInt!] + gasPrice: BigInt + gasPrice_not: BigInt + gasPrice_gt: BigInt + gasPrice_lt: BigInt + gasPrice_gte: BigInt + gasPrice_lte: BigInt + gasPrice_in: [BigInt!] + gasPrice_not_in: [BigInt!] + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Audit_filter] + or: [Audit_filter] +} + +enum Audit_orderBy { + id + blockNumber + transactionHash + transactionTimestamp + fromAddress + toAddress + valueTransferred + gasPrice } scalar BigDecimal @@ -291,6 +521,7 @@ scalar Int8 type Issuer { id: ID! + auditInformation: AuditInformation! } input Issuer_filter { @@ -302,6 +533,27 @@ input Issuer_filter { id_lte: ID id_in: [ID!] id_not_in: [ID!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Issuer_filter] @@ -310,6 +562,8 @@ input Issuer_filter { enum Issuer_orderBy { id + auditInformation + auditInformation__id } type Module { @@ -317,6 +571,7 @@ type Module { moduleAddress: Bytes! name: String! description: String! + auditInformation: AuditInformation! } input Module_filter { @@ -378,6 +633,27 @@ input Module_filter { description_ends_with_nocase: String description_not_ends_with: String description_not_ends_with_nocase: String + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Module_filter] @@ -389,6 +665,8 @@ enum Module_orderBy { moduleAddress name description + auditInformation + auditInformation__id } """Defines the order direction, either ascending or descending""" @@ -406,6 +684,7 @@ type Portal { description: String! ownerName: String! attestationCounter: Int + auditInformation: AuditInformation! } input Portal_filter { @@ -505,6 +784,27 @@ input Portal_filter { attestationCounter_lte: Int attestationCounter_in: [Int!] attestationCounter_not_in: [Int!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Portal_filter] @@ -520,6 +820,8 @@ enum Portal_orderBy { description ownerName attestationCounter + auditInformation + auditInformation__id } type Query { @@ -705,6 +1007,58 @@ type Query { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [RegistryVersion!]! + auditInformation( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): AuditInformation + auditInformations( + skip: Int = 0 + first: Int = 100 + orderBy: AuditInformation_orderBy + orderDirection: OrderDirection + where: AuditInformation_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [AuditInformation!]! + audit( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Audit + audits( + skip: Int = 0 + first: Int = 100 + orderBy: Audit_orderBy + orderDirection: OrderDirection + where: Audit_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Audit!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ } @@ -713,6 +1067,7 @@ type RegistryVersion { id: ID! versionNumber: Int timestamp: BigInt + auditInformation: AuditInformation! } input RegistryVersion_filter { @@ -740,6 +1095,27 @@ input RegistryVersion_filter { timestamp_lte: BigInt timestamp_in: [BigInt!] timestamp_not_in: [BigInt!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [RegistryVersion_filter] @@ -750,6 +1126,8 @@ enum RegistryVersion_orderBy { id versionNumber timestamp + auditInformation + auditInformation__id } type Schema { @@ -759,6 +1137,7 @@ type Schema { context: String! schema: String! attestationCounter: Int + auditInformation: AuditInformation! } input Schema_filter { @@ -858,6 +1237,27 @@ input Schema_filter { attestationCounter_lte: Int attestationCounter_in: [Int!] attestationCounter_not_in: [Int!] + auditInformation: String + auditInformation_not: String + auditInformation_gt: String + auditInformation_lt: String + auditInformation_gte: String + auditInformation_lte: String + auditInformation_in: [String!] + auditInformation_not_in: [String!] + auditInformation_contains: String + auditInformation_contains_nocase: String + auditInformation_not_contains: String + auditInformation_not_contains_nocase: String + auditInformation_starts_with: String + auditInformation_starts_with_nocase: String + auditInformation_not_starts_with: String + auditInformation_not_starts_with_nocase: String + auditInformation_ends_with: String + auditInformation_ends_with_nocase: String + auditInformation_not_ends_with: String + auditInformation_not_ends_with_nocase: String + auditInformation_: AuditInformation_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter and: [Schema_filter] @@ -871,6 +1271,8 @@ enum Schema_orderBy { context schema attestationCounter + auditInformation + auditInformation__id } type Subscription { @@ -1056,6 +1458,58 @@ type Subscription { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [RegistryVersion!]! + auditInformation( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): AuditInformation + auditInformations( + skip: Int = 0 + first: Int = 100 + orderBy: AuditInformation_orderBy + orderDirection: OrderDirection + where: AuditInformation_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [AuditInformation!]! + audit( + id: ID! + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Audit + audits( + skip: Int = 0 + first: Int = 100 + orderBy: Audit_orderBy + orderDirection: OrderDirection + where: Audit_filter + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Audit!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ } diff --git a/sdk/.graphclient/sources/linea-attestation-registry/types.ts b/sdk/.graphclient/sources/linea-attestation-registry/types.ts index 5cda0308..ff75c17b 100644 --- a/sdk/.graphclient/sources/linea-attestation-registry/types.ts +++ b/sdk/.graphclient/sources/linea-attestation-registry/types.ts @@ -31,10 +31,10 @@ export type Aggregation_interval = export type Attestation = { id: Scalars['ID']['output']; - schemaId: Scalars['Bytes']['output']; + schema: Schema; replacedBy: Scalars['Bytes']['output']; attester: Scalars['Bytes']['output']; - portal: Scalars['Bytes']['output']; + portal: Portal; attestedDate: Scalars['BigInt']['output']; expirationDate: Scalars['BigInt']['output']; revocationDate: Scalars['BigInt']['output']; @@ -43,8 +43,8 @@ export type Attestation = { subject: Scalars['Bytes']['output']; encodedSubject: Scalars['Bytes']['output']; attestationData: Scalars['Bytes']['output']; - schemaString?: Maybe; decodedData?: Maybe>; + auditInformation: AuditInformation; }; export type Attestation_filter = { @@ -56,16 +56,27 @@ export type Attestation_filter = { id_lte?: InputMaybe; id_in?: InputMaybe>; id_not_in?: InputMaybe>; - schemaId?: InputMaybe; - schemaId_not?: InputMaybe; - schemaId_gt?: InputMaybe; - schemaId_lt?: InputMaybe; - schemaId_gte?: InputMaybe; - schemaId_lte?: InputMaybe; - schemaId_in?: InputMaybe>; - schemaId_not_in?: InputMaybe>; - schemaId_contains?: InputMaybe; - schemaId_not_contains?: InputMaybe; + schema?: InputMaybe; + schema_not?: InputMaybe; + schema_gt?: InputMaybe; + schema_lt?: InputMaybe; + schema_gte?: InputMaybe; + schema_lte?: InputMaybe; + schema_in?: InputMaybe>; + schema_not_in?: InputMaybe>; + schema_contains?: InputMaybe; + schema_contains_nocase?: InputMaybe; + schema_not_contains?: InputMaybe; + schema_not_contains_nocase?: InputMaybe; + schema_starts_with?: InputMaybe; + schema_starts_with_nocase?: InputMaybe; + schema_not_starts_with?: InputMaybe; + schema_not_starts_with_nocase?: InputMaybe; + schema_ends_with?: InputMaybe; + schema_ends_with_nocase?: InputMaybe; + schema_not_ends_with?: InputMaybe; + schema_not_ends_with_nocase?: InputMaybe; + schema_?: InputMaybe; replacedBy?: InputMaybe; replacedBy_not?: InputMaybe; replacedBy_gt?: InputMaybe; @@ -86,16 +97,27 @@ export type Attestation_filter = { attester_not_in?: InputMaybe>; attester_contains?: InputMaybe; attester_not_contains?: InputMaybe; - portal?: InputMaybe; - portal_not?: InputMaybe; - portal_gt?: InputMaybe; - portal_lt?: InputMaybe; - portal_gte?: InputMaybe; - portal_lte?: InputMaybe; - portal_in?: InputMaybe>; - portal_not_in?: InputMaybe>; - portal_contains?: InputMaybe; - portal_not_contains?: InputMaybe; + portal?: InputMaybe; + portal_not?: InputMaybe; + portal_gt?: InputMaybe; + portal_lt?: InputMaybe; + portal_gte?: InputMaybe; + portal_lte?: InputMaybe; + portal_in?: InputMaybe>; + portal_not_in?: InputMaybe>; + portal_contains?: InputMaybe; + portal_contains_nocase?: InputMaybe; + portal_not_contains?: InputMaybe; + portal_not_contains_nocase?: InputMaybe; + portal_starts_with?: InputMaybe; + portal_starts_with_nocase?: InputMaybe; + portal_not_starts_with?: InputMaybe; + portal_not_starts_with_nocase?: InputMaybe; + portal_ends_with?: InputMaybe; + portal_ends_with_nocase?: InputMaybe; + portal_not_ends_with?: InputMaybe; + portal_not_ends_with_nocase?: InputMaybe; + portal_?: InputMaybe; attestedDate?: InputMaybe; attestedDate_not?: InputMaybe; attestedDate_gt?: InputMaybe; @@ -162,32 +184,33 @@ export type Attestation_filter = { attestationData_not_in?: InputMaybe>; attestationData_contains?: InputMaybe; attestationData_not_contains?: InputMaybe; - schemaString?: InputMaybe; - schemaString_not?: InputMaybe; - schemaString_gt?: InputMaybe; - schemaString_lt?: InputMaybe; - schemaString_gte?: InputMaybe; - schemaString_lte?: InputMaybe; - schemaString_in?: InputMaybe>; - schemaString_not_in?: InputMaybe>; - schemaString_contains?: InputMaybe; - schemaString_contains_nocase?: InputMaybe; - schemaString_not_contains?: InputMaybe; - schemaString_not_contains_nocase?: InputMaybe; - schemaString_starts_with?: InputMaybe; - schemaString_starts_with_nocase?: InputMaybe; - schemaString_not_starts_with?: InputMaybe; - schemaString_not_starts_with_nocase?: InputMaybe; - schemaString_ends_with?: InputMaybe; - schemaString_ends_with_nocase?: InputMaybe; - schemaString_not_ends_with?: InputMaybe; - schemaString_not_ends_with_nocase?: InputMaybe; decodedData?: InputMaybe>; decodedData_not?: InputMaybe>; decodedData_contains?: InputMaybe>; decodedData_contains_nocase?: InputMaybe>; decodedData_not_contains?: InputMaybe>; decodedData_not_contains_nocase?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -196,10 +219,23 @@ export type Attestation_filter = { export type Attestation_orderBy = | 'id' - | 'schemaId' + | 'schema' + | 'schema__id' + | 'schema__name' + | 'schema__description' + | 'schema__context' + | 'schema__schema' + | 'schema__attestationCounter' | 'replacedBy' | 'attester' | 'portal' + | 'portal__id' + | 'portal__ownerAddress' + | 'portal__isRevocable' + | 'portal__name' + | 'portal__description' + | 'portal__ownerName' + | 'portal__attestationCounter' | 'attestedDate' | 'expirationDate' | 'revocationDate' @@ -208,8 +244,209 @@ export type Attestation_orderBy = | 'subject' | 'encodedSubject' | 'attestationData' - | 'schemaString' - | 'decodedData'; + | 'decodedData' + | 'auditInformation' + | 'auditInformation__id'; + +export type Audit = { + id: Scalars['ID']['output']; + blockNumber: Scalars['BigInt']['output']; + transactionHash: Scalars['Bytes']['output']; + transactionTimestamp: Scalars['BigInt']['output']; + fromAddress: Scalars['Bytes']['output']; + toAddress?: Maybe; + valueTransferred?: Maybe; + gasPrice?: Maybe; +}; + +export type AuditInformation = { + id: Scalars['ID']['output']; + creation: Audit; + lastModification: Audit; + modifications: Array; +}; + + +export type AuditInformationmodificationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; +}; + +export type AuditInformation_filter = { + id?: InputMaybe; + id_not?: InputMaybe; + id_gt?: InputMaybe; + id_lt?: InputMaybe; + id_gte?: InputMaybe; + id_lte?: InputMaybe; + id_in?: InputMaybe>; + id_not_in?: InputMaybe>; + creation?: InputMaybe; + creation_not?: InputMaybe; + creation_gt?: InputMaybe; + creation_lt?: InputMaybe; + creation_gte?: InputMaybe; + creation_lte?: InputMaybe; + creation_in?: InputMaybe>; + creation_not_in?: InputMaybe>; + creation_contains?: InputMaybe; + creation_contains_nocase?: InputMaybe; + creation_not_contains?: InputMaybe; + creation_not_contains_nocase?: InputMaybe; + creation_starts_with?: InputMaybe; + creation_starts_with_nocase?: InputMaybe; + creation_not_starts_with?: InputMaybe; + creation_not_starts_with_nocase?: InputMaybe; + creation_ends_with?: InputMaybe; + creation_ends_with_nocase?: InputMaybe; + creation_not_ends_with?: InputMaybe; + creation_not_ends_with_nocase?: InputMaybe; + creation_?: InputMaybe; + lastModification?: InputMaybe; + lastModification_not?: InputMaybe; + lastModification_gt?: InputMaybe; + lastModification_lt?: InputMaybe; + lastModification_gte?: InputMaybe; + lastModification_lte?: InputMaybe; + lastModification_in?: InputMaybe>; + lastModification_not_in?: InputMaybe>; + lastModification_contains?: InputMaybe; + lastModification_contains_nocase?: InputMaybe; + lastModification_not_contains?: InputMaybe; + lastModification_not_contains_nocase?: InputMaybe; + lastModification_starts_with?: InputMaybe; + lastModification_starts_with_nocase?: InputMaybe; + lastModification_not_starts_with?: InputMaybe; + lastModification_not_starts_with_nocase?: InputMaybe; + lastModification_ends_with?: InputMaybe; + lastModification_ends_with_nocase?: InputMaybe; + lastModification_not_ends_with?: InputMaybe; + lastModification_not_ends_with_nocase?: InputMaybe; + lastModification_?: InputMaybe; + modifications?: InputMaybe>; + modifications_not?: InputMaybe>; + modifications_contains?: InputMaybe>; + modifications_contains_nocase?: InputMaybe>; + modifications_not_contains?: InputMaybe>; + modifications_not_contains_nocase?: InputMaybe>; + modifications_?: InputMaybe; + /** Filter for the block changed event. */ + _change_block?: InputMaybe; + and?: InputMaybe>>; + or?: InputMaybe>>; +}; + +export type AuditInformation_orderBy = + | 'id' + | 'creation' + | 'creation__id' + | 'creation__blockNumber' + | 'creation__transactionHash' + | 'creation__transactionTimestamp' + | 'creation__fromAddress' + | 'creation__toAddress' + | 'creation__valueTransferred' + | 'creation__gasPrice' + | 'lastModification' + | 'lastModification__id' + | 'lastModification__blockNumber' + | 'lastModification__transactionHash' + | 'lastModification__transactionTimestamp' + | 'lastModification__fromAddress' + | 'lastModification__toAddress' + | 'lastModification__valueTransferred' + | 'lastModification__gasPrice' + | 'modifications'; + +export type Audit_filter = { + id?: InputMaybe; + id_not?: InputMaybe; + id_gt?: InputMaybe; + id_lt?: InputMaybe; + id_gte?: InputMaybe; + id_lte?: InputMaybe; + id_in?: InputMaybe>; + id_not_in?: InputMaybe>; + blockNumber?: InputMaybe; + blockNumber_not?: InputMaybe; + blockNumber_gt?: InputMaybe; + blockNumber_lt?: InputMaybe; + blockNumber_gte?: InputMaybe; + blockNumber_lte?: InputMaybe; + blockNumber_in?: InputMaybe>; + blockNumber_not_in?: InputMaybe>; + transactionHash?: InputMaybe; + transactionHash_not?: InputMaybe; + transactionHash_gt?: InputMaybe; + transactionHash_lt?: InputMaybe; + transactionHash_gte?: InputMaybe; + transactionHash_lte?: InputMaybe; + transactionHash_in?: InputMaybe>; + transactionHash_not_in?: InputMaybe>; + transactionHash_contains?: InputMaybe; + transactionHash_not_contains?: InputMaybe; + transactionTimestamp?: InputMaybe; + transactionTimestamp_not?: InputMaybe; + transactionTimestamp_gt?: InputMaybe; + transactionTimestamp_lt?: InputMaybe; + transactionTimestamp_gte?: InputMaybe; + transactionTimestamp_lte?: InputMaybe; + transactionTimestamp_in?: InputMaybe>; + transactionTimestamp_not_in?: InputMaybe>; + fromAddress?: InputMaybe; + fromAddress_not?: InputMaybe; + fromAddress_gt?: InputMaybe; + fromAddress_lt?: InputMaybe; + fromAddress_gte?: InputMaybe; + fromAddress_lte?: InputMaybe; + fromAddress_in?: InputMaybe>; + fromAddress_not_in?: InputMaybe>; + fromAddress_contains?: InputMaybe; + fromAddress_not_contains?: InputMaybe; + toAddress?: InputMaybe; + toAddress_not?: InputMaybe; + toAddress_gt?: InputMaybe; + toAddress_lt?: InputMaybe; + toAddress_gte?: InputMaybe; + toAddress_lte?: InputMaybe; + toAddress_in?: InputMaybe>; + toAddress_not_in?: InputMaybe>; + toAddress_contains?: InputMaybe; + toAddress_not_contains?: InputMaybe; + valueTransferred?: InputMaybe; + valueTransferred_not?: InputMaybe; + valueTransferred_gt?: InputMaybe; + valueTransferred_lt?: InputMaybe; + valueTransferred_gte?: InputMaybe; + valueTransferred_lte?: InputMaybe; + valueTransferred_in?: InputMaybe>; + valueTransferred_not_in?: InputMaybe>; + gasPrice?: InputMaybe; + gasPrice_not?: InputMaybe; + gasPrice_gt?: InputMaybe; + gasPrice_lt?: InputMaybe; + gasPrice_gte?: InputMaybe; + gasPrice_lte?: InputMaybe; + gasPrice_in?: InputMaybe>; + gasPrice_not_in?: InputMaybe>; + /** Filter for the block changed event. */ + _change_block?: InputMaybe; + and?: InputMaybe>>; + or?: InputMaybe>>; +}; + +export type Audit_orderBy = + | 'id' + | 'blockNumber' + | 'transactionHash' + | 'transactionTimestamp' + | 'fromAddress' + | 'toAddress' + | 'valueTransferred' + | 'gasPrice'; export type BlockChangedFilter = { number_gte: Scalars['Int']['input']; @@ -285,6 +522,7 @@ export type Counter_orderBy = export type Issuer = { id: Scalars['ID']['output']; + auditInformation: AuditInformation; }; export type Issuer_filter = { @@ -296,6 +534,27 @@ export type Issuer_filter = { id_lte?: InputMaybe; id_in?: InputMaybe>; id_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -303,13 +562,16 @@ export type Issuer_filter = { }; export type Issuer_orderBy = - | 'id'; + | 'id' + | 'auditInformation' + | 'auditInformation__id'; export type Module = { id: Scalars['ID']['output']; moduleAddress: Scalars['Bytes']['output']; name: Scalars['String']['output']; description: Scalars['String']['output']; + auditInformation: AuditInformation; }; export type Module_filter = { @@ -371,6 +633,27 @@ export type Module_filter = { description_ends_with_nocase?: InputMaybe; description_not_ends_with?: InputMaybe; description_not_ends_with_nocase?: InputMaybe; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -381,7 +664,9 @@ export type Module_orderBy = | 'id' | 'moduleAddress' | 'name' - | 'description'; + | 'description' + | 'auditInformation' + | 'auditInformation__id'; /** Defines the order direction, either ascending or descending */ export type OrderDirection = @@ -397,6 +682,7 @@ export type Portal = { description: Scalars['String']['output']; ownerName: Scalars['String']['output']; attestationCounter?: Maybe; + auditInformation: AuditInformation; }; export type Portal_filter = { @@ -496,6 +782,27 @@ export type Portal_filter = { attestationCounter_lte?: InputMaybe; attestationCounter_in?: InputMaybe>; attestationCounter_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -510,7 +817,9 @@ export type Portal_orderBy = | 'name' | 'description' | 'ownerName' - | 'attestationCounter'; + | 'attestationCounter' + | 'auditInformation' + | 'auditInformation__id'; export type Query = { attestation?: Maybe; @@ -527,6 +836,10 @@ export type Query = { issuers: Array; registryVersion?: Maybe; registryVersions: Array; + auditInformation?: Maybe; + auditInformations: Array; + audit?: Maybe; + audits: Array; /** Access to subgraph metadata */ _meta?: Maybe<_Meta_>; }; @@ -658,6 +971,42 @@ export type QueryregistryVersionsArgs = { }; +export type QueryauditInformationArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditInformationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type QueryauditsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + export type Query_metaArgs = { block?: InputMaybe; }; @@ -666,6 +1015,7 @@ export type RegistryVersion = { id: Scalars['ID']['output']; versionNumber?: Maybe; timestamp?: Maybe; + auditInformation: AuditInformation; }; export type RegistryVersion_filter = { @@ -693,6 +1043,27 @@ export type RegistryVersion_filter = { timestamp_lte?: InputMaybe; timestamp_in?: InputMaybe>; timestamp_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -702,7 +1073,9 @@ export type RegistryVersion_filter = { export type RegistryVersion_orderBy = | 'id' | 'versionNumber' - | 'timestamp'; + | 'timestamp' + | 'auditInformation' + | 'auditInformation__id'; export type Schema = { id: Scalars['ID']['output']; @@ -711,6 +1084,7 @@ export type Schema = { context: Scalars['String']['output']; schema: Scalars['String']['output']; attestationCounter?: Maybe; + auditInformation: AuditInformation; }; export type Schema_filter = { @@ -810,6 +1184,27 @@ export type Schema_filter = { attestationCounter_lte?: InputMaybe; attestationCounter_in?: InputMaybe>; attestationCounter_not_in?: InputMaybe>; + auditInformation?: InputMaybe; + auditInformation_not?: InputMaybe; + auditInformation_gt?: InputMaybe; + auditInformation_lt?: InputMaybe; + auditInformation_gte?: InputMaybe; + auditInformation_lte?: InputMaybe; + auditInformation_in?: InputMaybe>; + auditInformation_not_in?: InputMaybe>; + auditInformation_contains?: InputMaybe; + auditInformation_contains_nocase?: InputMaybe; + auditInformation_not_contains?: InputMaybe; + auditInformation_not_contains_nocase?: InputMaybe; + auditInformation_starts_with?: InputMaybe; + auditInformation_starts_with_nocase?: InputMaybe; + auditInformation_not_starts_with?: InputMaybe; + auditInformation_not_starts_with_nocase?: InputMaybe; + auditInformation_ends_with?: InputMaybe; + auditInformation_ends_with_nocase?: InputMaybe; + auditInformation_not_ends_with?: InputMaybe; + auditInformation_not_ends_with_nocase?: InputMaybe; + auditInformation_?: InputMaybe; /** Filter for the block changed event. */ _change_block?: InputMaybe; and?: InputMaybe>>; @@ -822,7 +1217,9 @@ export type Schema_orderBy = | 'description' | 'context' | 'schema' - | 'attestationCounter'; + | 'attestationCounter' + | 'auditInformation' + | 'auditInformation__id'; export type Subscription = { attestation?: Maybe; @@ -839,6 +1236,10 @@ export type Subscription = { issuers: Array; registryVersion?: Maybe; registryVersions: Array; + auditInformation?: Maybe; + auditInformations: Array; + audit?: Maybe; + audits: Array; /** Access to subgraph metadata */ _meta?: Maybe<_Meta_>; }; @@ -970,6 +1371,42 @@ export type SubscriptionregistryVersionsArgs = { }; +export type SubscriptionauditInformationArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditInformationsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditArgs = { + id: Scalars['ID']['input']; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + +export type SubscriptionauditsArgs = { + skip?: InputMaybe; + first?: InputMaybe; + orderBy?: InputMaybe; + orderDirection?: InputMaybe; + where?: InputMaybe; + block?: InputMaybe; + subgraphError?: _SubgraphErrorPolicy_; +}; + + export type Subscription_metaArgs = { block?: InputMaybe; }; @@ -1036,6 +1473,14 @@ export type _SubgraphErrorPolicy_ = registryVersion: InContextSdkMethod, /** null **/ registryVersions: InContextSdkMethod, + /** null **/ + auditInformation: InContextSdkMethod, + /** null **/ + auditInformations: InContextSdkMethod, + /** null **/ + audit: InContextSdkMethod, + /** null **/ + audits: InContextSdkMethod, /** Access to subgraph metadata **/ _meta: InContextSdkMethod }; @@ -1073,6 +1518,14 @@ export type _SubgraphErrorPolicy_ = registryVersion: InContextSdkMethod, /** null **/ registryVersions: InContextSdkMethod, + /** null **/ + auditInformation: InContextSdkMethod, + /** null **/ + auditInformations: InContextSdkMethod, + /** null **/ + audit: InContextSdkMethod, + /** null **/ + audits: InContextSdkMethod, /** Access to subgraph metadata **/ _meta: InContextSdkMethod }; diff --git a/sdk/.graphclientrc.yml b/sdk/.graphclientrc.yml index 9a163684..8c01f7cd 100644 --- a/sdk/.graphclientrc.yml +++ b/sdk/.graphclientrc.yml @@ -3,4 +3,4 @@ sources: - name: linea-attestation-registry handler: graphql: - endpoint: https://api.studio.thegraph.com/query/67521/verax-v1-linea/v0.0.1 + endpoint: https://api.studio.thegraph.com/query/67521/verax-v2-linea/v0.0.1 diff --git a/sdk/package.json b/sdk/package.json index 19eb3075..3754a6a4 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@verax-attestation-registry/verax-sdk", - "version": "1.11.1", + "version": "2.0.0-beta.4", "description": "Verax Attestation Registry SDK to interact with the subgraph and the contracts", "keywords": [ "linea-attestation-registry", diff --git a/sdk/src/VeraxSdk.ts b/sdk/src/VeraxSdk.ts index 4e671502..8231884b 100644 --- a/sdk/src/VeraxSdk.ts +++ b/sdk/src/VeraxSdk.ts @@ -26,8 +26,8 @@ export class VeraxSdk { static DEFAULT_LINEA_MAINNET: Conf = { chain: linea, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-linea/v0.0.1", - // Backup URL: subgraphUrl: "https://graph-query.linea.build/subgraphs/name/Consensys/linea-attestation-registry", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-linea/v0.0.1", + // Backup URL: subgraphUrl: "https://api.goldsky.com/api/public/project_clxx488osyuf501vygg71f86w/subgraphs/verax-v2-linea/0.0.1/gn", portalRegistryAddress: "0xd5d61e4ECDf6d46A63BfdC262af92544DFc19083", moduleRegistryAddress: "0xf851513A732996F22542226341748f3C9978438f", schemaRegistryAddress: "0x0f95dCec4c7a93F2637eb13b655F2223ea036B59", @@ -43,7 +43,7 @@ export class VeraxSdk { chain: arbitrumNova, mode: SDKMode.BACKEND, subgraphUrl: - "https://api.goldsky.com/api/public/project_clwsa54350ydv01wjbq5r17v1/subgraphs/verax-v1-arbitrum-nova/0.0.4/gn", + "https://api.goldsky.com/api/public/project_cm06hsedxpgls01xm39r67el8/subgraphs/verax-v2-arbitrum-nova/0.0.1/gn", portalRegistryAddress: "0xADc8da3d3388dEe74C7134fC4AEe1cF866Da5d38", moduleRegistryAddress: "0x46F7471cd2C1d69Cb5e62c1a34F3fCAf81304Fc3", schemaRegistryAddress: "0x9b5BABcEbf0E8550da1eCDe5674783179B6557FB", @@ -58,7 +58,7 @@ export class VeraxSdk { static DEFAULT_LINEA_SEPOLIA: Conf = { chain: lineaSepolia, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-linea-sepolia/v0.0.12", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-linea-sepolia/v0.0.2", portalRegistryAddress: "0xF35fe79104e157703dbCC3Baa72a81A99591744D", moduleRegistryAddress: "0x3C443B9f0c8ed3A3270De7A4815487BA3223C2Fa", schemaRegistryAddress: "0x90b8542d7288a83EC887229A7C727989C3b56209", @@ -73,7 +73,7 @@ export class VeraxSdk { static DEFAULT_ARBITRUM_SEPOLIA: Conf = { chain: arbitrumSepolia, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-arbitrum-sepolia/v0.0.2", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-arbitrum-sepolia/v0.0.2", portalRegistryAddress: "0x1ceb52584B6C45C7049dc7fDC476bC138E4beaDE", moduleRegistryAddress: "0xEC572277d4E87a64DcfA774ED219Dd4E69E4BDc6", schemaRegistryAddress: "0x025531b655D9EE335B8E6cc4C118b313f26ACc8F", @@ -88,7 +88,7 @@ export class VeraxSdk { static DEFAULT_ARBITRUM: Conf = { chain: arbitrum, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-arbitrum/v0.0.1", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-arbitrum/v0.0.2", portalRegistryAddress: "0x4042D0A54f997EE3a1b0F51e4813654199BFd8bD", moduleRegistryAddress: "0x3acF4daAB6cbc01546Dd4a96c9665B398d48A4ba", schemaRegistryAddress: "0xE96072F46EA0e42e538762dDc0aFa4ED8AE6Ec27", @@ -103,7 +103,7 @@ export class VeraxSdk { static DEFAULT_BASE_SEPOLIA: Conf = { chain: baseSepolia, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-base-sepolia/v0.0.2", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-base-sepolia/v0.0.2", portalRegistryAddress: "0x025531b655D9EE335B8E6cc4C118b313f26ACc8F", moduleRegistryAddress: "0xEC572277d4E87a64DcfA774ED219Dd4E69E4BDc6", schemaRegistryAddress: "0x66D2F3DCc970343b83a6263E20832184fa71CFe7", @@ -118,7 +118,7 @@ export class VeraxSdk { static DEFAULT_BASE: Conf = { chain: base, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-base/v0.0.2", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-base/v0.0.1", portalRegistryAddress: "0xcbf28432C25B400E645F0EaC05F8954e8EE7c0d6", moduleRegistryAddress: "0xAd0C12db58098A6665CBEf48f60eB67d81d1F1ff", schemaRegistryAddress: "0x8081dCd745f160c148Eb5be510F78628A0951c31", @@ -133,7 +133,7 @@ export class VeraxSdk { static DEFAULT_BSC_TESTNET: Conf = { chain: bscTestnet, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-bsc-testnet/v0.0.1", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-bsc-testnet/v0.0.1", portalRegistryAddress: "0xA4a7517F62216BD42e42a67dF09C25adc72A5897", moduleRegistryAddress: "0x6c46c245918d4fcfC13F0a9e2e49d4E2739A353a", schemaRegistryAddress: "0x51929da151eC2C5a5881C750E5b9941eACC46c1d", @@ -148,7 +148,7 @@ export class VeraxSdk { static DEFAULT_BSC: Conf = { chain: bsc, mode: SDKMode.BACKEND, - subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v1-bsc/v0.0.1", + subgraphUrl: "https://api.studio.thegraph.com/query/67521/verax-v2-bsc/v0.0.1", portalRegistryAddress: "0xb2553A7E443DFA7C9dEc01D327FdDff1A5eF59b0", moduleRegistryAddress: "0xD70a06f7A0f197D55Fa841fcF668782b2B8266eB", schemaRegistryAddress: "0x29205492435E1b06B20CeAeEC4AC41bcF595DFFd", diff --git a/sdk/src/dataMapper/AttestationDataMapper.ts b/sdk/src/dataMapper/AttestationDataMapper.ts index 1fcba99a..3466ed40 100644 --- a/sdk/src/dataMapper/AttestationDataMapper.ts +++ b/sdk/src/dataMapper/AttestationDataMapper.ts @@ -17,19 +17,35 @@ export default class AttestationDataMapper extends BaseDataMapper< typeName = "attestation"; gqlInterface = `{ id - schemaId replacedBy attester - portal attestedDate expirationDate revocationDate version revoked subject + encodedSubject attestationData - schemaString decodedData + schema { + id + name + description + context + schema + attestationCounter + } + portal { + id + ownerAddress + modules + isRevocable + name + description + ownerName + attestationCounter + } }`; override async findOneById(id: string) { @@ -58,8 +74,7 @@ export default class AttestationDataMapper extends BaseDataMapper< } private async enrichAttestation(attestation: Attestation) { - const schema = (await this.veraxSdk.schema.findOneById(attestation.schemaId)) as Schema; - attestation.decodedPayload = decodeWithRetry(schema.schema, attestation.attestationData as Hex); + attestation.decodedPayload = decodeWithRetry(attestation.schema.schema, attestation.attestationData as Hex); attestation.attestedDate = Number(attestation.attestedDate); attestation.expirationDate = Number(attestation.expirationDate); @@ -67,8 +82,8 @@ export default class AttestationDataMapper extends BaseDataMapper< attestation.version = Number(attestation.version); - // Check if data is stored offchain - if (attestation.schemaId === Constants.OFFCHAIN_DATA_SCHEMA_ID) { + // Check if data is stored off-chain + if (attestation.schema.id === Constants.OFFCHAIN_DATA_SCHEMA_ID) { attestation.offchainData = { schemaId: (attestation.decodedPayload as OffchainData[])[0].schemaId, uri: (attestation.decodedPayload as OffchainData[])[0].uri, @@ -79,10 +94,10 @@ export default class AttestationDataMapper extends BaseDataMapper< const ipfsHash = attestation.offchainData.uri.split("//")[1]; const response = await getIPFSContent(ipfsHash); if (response.toString().startsWith("0x")) { - const offchainDataSchema = (await this.veraxSdk.schema.findOneById( + const offChainDataSchema = (await this.veraxSdk.schema.findOneById( attestation.offchainData.schemaId, )) as Schema; - attestation.decodedPayload = decodeWithRetry(offchainDataSchema.schema, attestation.attestationData as Hex); + attestation.decodedPayload = decodeWithRetry(offChainDataSchema.schema, attestation.attestationData as Hex); } else { attestation.decodedPayload = response as unknown as object; } @@ -99,7 +114,7 @@ export default class AttestationDataMapper extends BaseDataMapper< undefined, { attestationData_contains: id, - schemaId_in: [Constants.RELATIONSHIP_SCHEMA_ID, Constants.NAMED_GRAPH_RELATIONSHIP_SCHEMA_ID], + schema_in: [Constants.RELATIONSHIP_SCHEMA_ID, Constants.NAMED_GRAPH_RELATIONSHIP_SCHEMA_ID], }, undefined, undefined, diff --git a/sdk/src/types/index.ts b/sdk/src/types/index.ts index 0d7019e3..280826ae 100644 --- a/sdk/src/types/index.ts +++ b/sdk/src/types/index.ts @@ -20,7 +20,6 @@ export type AttestationPayload = { export type Attestation = OnChainAttestation & { id: string; - schemaString: string; decodedData: string[]; decodedPayload: object; offchainData?: OffchainData; @@ -30,10 +29,10 @@ export type OffchainData = { schemaId: string; uri: string; error?: string }; export type OnChainAttestation = { attestationId: string; // The unique identifier of the attestation. - schemaId: string; // The identifier of the schema this attestation adheres to. + schema: Schema; // The Schema this attestation adheres to. replacedBy: string | null; // Whether the attestation was replaced by a new one. attester: Address; // The address issuing the attestation to the subject. - portal: Address; // The id of the portal that created the attestation. + portal: Portal; // The Portal that created the attestation. attestedDate: number; // The date the attestation is issued. expirationDate: number; // The expiration date of the attestation. revocationDate: number | null; // The date when the attestation was revoked. diff --git a/sdk/test/integration/Attestation.integration.test.ts b/sdk/test/integration/Attestation.integration.test.ts index 64a6be8b..9b30000b 100644 --- a/sdk/test/integration/Attestation.integration.test.ts +++ b/sdk/test/integration/Attestation.integration.test.ts @@ -15,10 +15,24 @@ describe("AttestationDataMapper", () => { expect(result).not.toBeUndefined(); expect(result?.id).toEqual(attestationId); - expect(result?.schemaId).toEqual("0x5dc8bc9158dd69ee8a234bb8f9ab1f4f17bb52c84b6fd4720d58ec82bb43d2f5"); + expect(result?.schema.id).toEqual("0x5dc8bc9158dd69ee8a234bb8f9ab1f4f17bb52c84b6fd4720d58ec82bb43d2f5"); + expect(result?.schema.name).toEqual("Token Balance"); + expect(result?.schema.description).toEqual("Describes a balance owned on a contract"); + expect(result?.schema.context).toEqual( + "Describes a token balance owned on a contract (ERC-20, ERC-721, ERC-1155, etc.)", + ); + expect(result?.schema.schema).toEqual("(address contract, uint256 balance)"); + expect(result?.schema.attestationCounter).toBeGreaterThanOrEqual(26); expect(result?.replacedBy).toEqual("0x0000000000000000000000000000000000000000000000000000000000000000"); expect(result?.attester).toEqual("0x6ecfd8252c19ac2bf4bd1cbdc026c001c93e179d"); - expect(result?.portal).toEqual("0x0cb56f201e7afe02e542e2d2d42c34d4ce7203f7"); + expect(result?.portal.id).toEqual("0x0cb56f201e7afe02e542e2d2d42c34d4ce7203f7"); + expect(result?.portal.name).toEqual("eFrogs Portal"); + expect(result?.portal.description).toEqual("eFrogs attestations"); + expect(result?.portal.modules).toEqual([]); + expect(result?.portal.isRevocable).toBeTruthy(); + expect(result?.portal.attestationCounter).toBeGreaterThanOrEqual(26); + expect(result?.portal.ownerAddress).toEqual("0x6ecfd8252c19ac2bf4bd1cbdc026c001c93e179d"); + expect(result?.portal.ownerName).toEqual("alainnicolas.eth"); expect(result?.attestedDate).toEqual(1718025507); expect(result?.expirationDate).toEqual(1720617499); expect(result?.revocationDate).toEqual(0); @@ -28,7 +42,6 @@ describe("AttestationDataMapper", () => { expect(result?.attestationData).toEqual( "0x00000000000000000000000035c134262605bc69b3383ea132a077d09d8df0610000000000000000000000000000000000000000000000000000000000000006", ); - expect(result?.schemaString).toEqual("address,uint256"); expect(result?.decodedData).toEqual(["0x35c134262605bc69b3383ea132a077d09d8df061", "0x6"]); expect(result?.decodedPayload).toEqual([ {