@seedprotocol/sdk 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{ArweaveClient-CmJYeuq1.js → ArweaveClient-C0g0es2v.js} +2 -2
- package/dist/{ArweaveClient-EXXrXUzz.js.map → ArweaveClient-C0g0es2v.js.map} +1 -1
- package/dist/{ArweaveClient-EXXrXUzz.js → ArweaveClient-CzkBgiZY.js} +2 -2
- package/dist/{ArweaveClient-CmJYeuq1.js.map → ArweaveClient-CzkBgiZY.js.map} +1 -1
- package/dist/{Db-CESKJH-G.js → Db-C4oog-0n.js} +3 -3
- package/dist/{Db-CESKJH-G.js.map → Db-C4oog-0n.js.map} +1 -1
- package/dist/{Db-DiTPSbQ8.js → Db-VPouegkr.js} +3 -3
- package/dist/{Db-DiTPSbQ8.js.map → Db-VPouegkr.js.map} +1 -1
- package/dist/{EasClient-BesHK2bO.js → EasClient-B9a3NsTi.js} +2 -2
- package/dist/{EasClient-BesHK2bO.js.map → EasClient-B9a3NsTi.js.map} +1 -1
- package/dist/{EasClient-Cop6WtWl.js → EasClient-DQ93i2ci.js} +2 -2
- package/dist/{EasClient-Cop6WtWl.js.map → EasClient-DQ93i2ci.js.map} +1 -1
- package/dist/{FileManager-DTzkncLh.js → FileManager-_ErxVuwb.js} +8 -5
- package/dist/FileManager-_ErxVuwb.js.map +1 -0
- package/dist/{Item-B5Tz-Y7t.js → Item-D9HFPxsK.js} +3 -3
- package/dist/{Item-B5Tz-Y7t.js.map → Item-D9HFPxsK.js.map} +1 -1
- package/dist/{ItemProperty-DBV0Iib_.js → ItemProperty-BdtvKrEy.js} +3 -3
- package/dist/{ItemProperty-DBV0Iib_.js.map → ItemProperty-BdtvKrEy.js.map} +1 -1
- package/dist/{QueryClient-C7a0NHCt.js → QueryClient-Bmnv_moN.js} +2 -2
- package/dist/{QueryClient-C7a0NHCt.js.map → QueryClient-Bmnv_moN.js.map} +1 -1
- package/dist/{QueryClient-BnwbHtqe.js → QueryClient-hzOtFe99.js} +2 -2
- package/dist/{QueryClient-BnwbHtqe.js.map → QueryClient-hzOtFe99.js.map} +1 -1
- package/dist/bin.js +5 -5
- package/dist/bin.js.map +1 -1
- package/dist/{constants-CWg2B3Au.js → constants-Bhl5dZpN.js} +4 -1
- package/dist/constants-Bhl5dZpN.js.map +1 -0
- package/dist/{index-CQ9FS10O.js → index-BAtjd9W-.js} +3 -3
- package/dist/index-BAtjd9W-.js.map +1 -0
- package/dist/{index-BHGJ-Es9.js → index-BSR5hv7Q.js} +59 -27
- package/dist/index-BSR5hv7Q.js.map +1 -0
- package/dist/main.js +2 -2
- package/dist/{seed.schema.config-DDzfQguf.js → seed.schema.config-BxJYabim.js} +3 -3
- package/dist/{seed.schema.config-DDzfQguf.js.map → seed.schema.config-BxJYabim.js.map} +1 -1
- package/dist/src/AppStateSchema.ts +10 -0
- package/dist/src/ArweaveClient.ts +13 -0
- package/dist/src/Attestation.ts +21 -0
- package/dist/src/BaseArweaveClient.ts +13 -0
- package/dist/src/BaseClientManager.ts +35 -0
- package/dist/src/BaseDb.ts +35 -0
- package/dist/src/BaseEasClient.ts +14 -0
- package/dist/src/BaseFileManager.ts +60 -0
- package/dist/src/BaseItem.ts +413 -0
- package/dist/src/BaseItemProperty.ts +416 -0
- package/dist/src/BaseQueryClient.ts +13 -0
- package/dist/src/ClientManager.ts +63 -0
- package/dist/src/ConfigSchema.ts +15 -0
- package/dist/src/Db.ts +82 -0
- package/dist/src/EasClient.ts +13 -0
- package/dist/src/FileDownloader.ts +63 -0
- package/dist/src/FileManager.ts +59 -0
- package/dist/src/IDb.ts +7 -0
- package/dist/src/IEasClient.ts +2 -0
- package/dist/src/IItem.ts +26 -0
- package/dist/src/IItemProperty.ts +28 -0
- package/dist/src/IQueryClient.ts +11 -0
- package/dist/src/ImageResizer.ts +81 -0
- package/dist/src/Item.ts +12 -0
- package/dist/src/ItemProperty.ts +9 -0
- package/dist/src/MetadataSchema.ts +28 -0
- package/dist/src/ModelSchema.ts +46 -0
- package/dist/src/ModelUidSchema.ts +16 -0
- package/dist/src/PropertyUidSchema.ts +16 -0
- package/dist/src/QueryClient.ts +26 -0
- package/dist/src/Schema.ts +17 -0
- package/dist/src/SeedProtocolSdk.d.ts +19 -0
- package/dist/src/SeedSchema.ts +29 -0
- package/dist/src/VersionSchema.ts +16 -0
- package/dist/src/actors.ts +295 -0
- package/dist/src/addModelsToDb.ts +152 -0
- package/dist/src/allItems.ts +31 -0
- package/dist/src/analyzeInput.ts +144 -0
- package/dist/src/browser.app.db.config.ts +27 -0
- package/dist/src/browser.ts +30 -0
- package/dist/src/checkStatus.ts +57 -0
- package/dist/src/clientManagerMachine.ts +59 -0
- package/dist/src/configureFs.ts +98 -0
- package/dist/src/connectToDb.ts +41 -0
- package/dist/src/connectionManager.ts +67 -0
- package/dist/src/constants.ts +125 -0
- package/dist/src/content-hash.ts +30 -0
- package/dist/src/create.ts +39 -0
- package/dist/src/createMetadata.ts +77 -0
- package/dist/src/createNewItem.ts +61 -0
- package/dist/src/createPublishAttempt.ts +16 -0
- package/dist/src/createSeed.ts +31 -0
- package/dist/src/createSeeds.ts +24 -0
- package/dist/src/createVersion.ts +33 -0
- package/dist/src/dbMachine.ts +182 -0
- package/dist/src/deleteItem.ts +19 -0
- package/dist/src/download.ts +208 -0
- package/dist/src/drizzle.ts +78 -0
- package/dist/src/eas.ts +40 -0
- package/dist/src/environment.ts +35 -0
- package/dist/src/eventBus.ts +5 -0
- package/dist/src/events.ts +14 -0
- package/dist/src/fetchDataFromEas.ts +94 -0
- package/dist/src/fetchDbData.ts +19 -0
- package/dist/src/fetchRelatedItems.ts +184 -0
- package/dist/src/fetchSeeds.ts +45 -0
- package/dist/src/fetchVersions.ts +49 -0
- package/dist/src/files.ts +81 -0
- package/dist/src/filesDownload.ts +326 -0
- package/dist/src/fragment-masking.ts +87 -0
- package/dist/src/getExistingItem.ts +60 -0
- package/dist/src/getItem.ts +32 -0
- package/dist/src/getItemData.ts +99 -0
- package/dist/src/getItemProperties.ts +56 -0
- package/dist/src/getItemProperty.ts +34 -0
- package/dist/src/getItems.ts +70 -0
- package/dist/src/getMetadata.ts +40 -0
- package/dist/src/getModelSchemas.ts +89 -0
- package/dist/src/getPropertyData.ts +50 -0
- package/dist/src/getPublishPayload.ts +355 -0
- package/dist/src/getPublishUploads.ts +207 -0
- package/dist/src/getRelationValueData.ts +27 -0
- package/dist/src/getSchemaForItemProperty.ts +68 -0
- package/dist/src/getSchemaForModel.ts +42 -0
- package/dist/src/getSchemaUidForModel.ts +32 -0
- package/dist/src/getSeedData.ts +34 -0
- package/dist/src/getSegmentedItemProperties.ts +65 -0
- package/dist/src/getStorageTransactionIdForSeedUid.ts +38 -0
- package/dist/src/getVersionData.ts +46 -0
- package/dist/src/getVersionsForVersionUids.ts +39 -0
- package/dist/src/globalMachine.ts +280 -0
- package/dist/src/gql.ts +118 -0
- package/dist/src/graphql.ts +3209 -0
- package/dist/src/helpers.ts +273 -0
- package/dist/src/hydrateExistingItem.ts +137 -0
- package/dist/src/hydrateFromDb.ts +270 -0
- package/dist/src/hydrateNewItem.ts +34 -0
- package/dist/src/imageResize.ts +507 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.ts +4 -0
- package/dist/src/initialize.ts +124 -0
- package/dist/src/internalMachine.ts +241 -0
- package/dist/src/itemMachineAll.ts +157 -0
- package/dist/src/itemMachineSingle.ts +158 -0
- package/dist/src/loadAppDb.ts +44 -0
- package/dist/src/machines.ts +66 -0
- package/dist/src/metadataLatest.ts +34 -0
- package/dist/src/migrate.ts +57 -0
- package/dist/src/model.ts +72 -0
- package/dist/src/modelClass.ts +19 -0
- package/dist/src/node.app.db.config.ts +41 -0
- package/dist/src/prepareDb.ts +29 -0
- package/dist/src/preparePublishRequestData.ts +81 -0
- package/dist/src/processItems.ts +74 -0
- package/dist/src/property.ts +156 -0
- package/dist/src/propertyMachine.ts +202 -0
- package/dist/src/publish.ts +28 -0
- package/dist/src/publishMachine.ts +77 -0
- package/dist/src/queries.ts +13 -0
- package/dist/src/recoverDeletedItem.ts +14 -0
- package/dist/src/reload.ts +33 -0
- package/dist/src/request.ts +45 -0
- package/dist/src/requestAll.ts +157 -0
- package/dist/src/resolveRelatedValue.ts +367 -0
- package/dist/src/resolveRemoteStorage.ts +88 -0
- package/dist/src/saveAppState.ts +50 -0
- package/dist/src/saveConfig.ts +106 -0
- package/dist/src/saveDataToDb.ts +145 -0
- package/dist/src/saveImageSrc.ts +242 -0
- package/dist/src/saveItemStorage.ts +156 -0
- package/dist/src/saveMetadata.ts +18 -0
- package/dist/src/savePublishService.ts +30 -0
- package/dist/src/saveRelation.ts +112 -0
- package/dist/src/seed.schema.config.ts +25 -0
- package/dist/src/seed.ts +10 -0
- package/dist/src/seedProtocol.ts +17 -0
- package/dist/src/services.ts +365 -0
- package/dist/src/setAddresses.ts +16 -0
- package/dist/src/sqlWasmClient.ts +88 -0
- package/dist/src/syncDbWithEas.ts +628 -0
- package/dist/src/trash.ts +29 -0
- package/dist/src/ts-to-proto.ts +101 -0
- package/dist/src/types.ts +12 -0
- package/dist/src/updateItemPropertyValue.ts +243 -0
- package/dist/src/updateMachineContext.ts +21 -0
- package/dist/src/updateMetadata.ts +59 -0
- package/dist/src/upload.ts +86 -0
- package/dist/src/validate.ts +45 -0
- package/dist/src/validateInput.ts +43 -0
- package/dist/src/validateItemData.ts +20 -0
- package/dist/src/versionData.ts +24 -0
- package/dist/src/waitForDb.ts +25 -0
- package/dist/src/waitForFiles.ts +41 -0
- package/dist/src/wasm.d.ts +8300 -0
- package/dist/types/scripts/bin.d.ts.map +1 -1
- package/dist/types/src/browser/helpers/FileManager.d.ts +2 -1
- package/dist/types/src/browser/helpers/FileManager.d.ts.map +1 -1
- package/dist/types/src/helpers/FileManager/BaseFileManager.d.ts +1 -0
- package/dist/types/src/helpers/FileManager/BaseFileManager.d.ts.map +1 -1
- package/dist/types/src/node/helpers/FileManager.d.ts +2 -1
- package/dist/types/src/node/helpers/FileManager.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/FileManager-DTzkncLh.js.map +0 -1
- package/dist/constants-CWg2B3Au.js.map +0 -1
- package/dist/index-BHGJ-Es9.js.map +0 -1
- package/dist/index-CQ9FS10O.js.map +0 -1
- package/dist/package.json +0 -189
|
@@ -0,0 +1,3209 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
3
|
+
export type Maybe<T> = T | null;
|
|
4
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
5
|
+
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
6
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
7
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
8
|
+
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
|
|
9
|
+
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
|
|
10
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
11
|
+
export type Scalars = {
|
|
12
|
+
ID: { input: string; output: string; }
|
|
13
|
+
String: { input: string; output: string; }
|
|
14
|
+
Boolean: { input: boolean; output: boolean; }
|
|
15
|
+
Int: { input: number; output: number; }
|
|
16
|
+
Float: { input: number; output: number; }
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export type AffectedRowsOutput = {
|
|
20
|
+
__typename?: 'AffectedRowsOutput';
|
|
21
|
+
count: Scalars['Int']['output'];
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export type AggregateAttestation = {
|
|
25
|
+
__typename?: 'AggregateAttestation';
|
|
26
|
+
_avg?: Maybe<AttestationAvgAggregate>;
|
|
27
|
+
_count?: Maybe<AttestationCountAggregate>;
|
|
28
|
+
_max?: Maybe<AttestationMaxAggregate>;
|
|
29
|
+
_min?: Maybe<AttestationMinAggregate>;
|
|
30
|
+
_sum?: Maybe<AttestationSumAggregate>;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type AggregateEnsName = {
|
|
34
|
+
__typename?: 'AggregateEnsName';
|
|
35
|
+
_avg?: Maybe<EnsNameAvgAggregate>;
|
|
36
|
+
_count?: Maybe<EnsNameCountAggregate>;
|
|
37
|
+
_max?: Maybe<EnsNameMaxAggregate>;
|
|
38
|
+
_min?: Maybe<EnsNameMinAggregate>;
|
|
39
|
+
_sum?: Maybe<EnsNameSumAggregate>;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export type AggregateOffchainRevocation = {
|
|
43
|
+
__typename?: 'AggregateOffchainRevocation';
|
|
44
|
+
_avg?: Maybe<OffchainRevocationAvgAggregate>;
|
|
45
|
+
_count?: Maybe<OffchainRevocationCountAggregate>;
|
|
46
|
+
_max?: Maybe<OffchainRevocationMaxAggregate>;
|
|
47
|
+
_min?: Maybe<OffchainRevocationMinAggregate>;
|
|
48
|
+
_sum?: Maybe<OffchainRevocationSumAggregate>;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export type AggregateSchema = {
|
|
52
|
+
__typename?: 'AggregateSchema';
|
|
53
|
+
_avg?: Maybe<SchemaAvgAggregate>;
|
|
54
|
+
_count?: Maybe<SchemaCountAggregate>;
|
|
55
|
+
_max?: Maybe<SchemaMaxAggregate>;
|
|
56
|
+
_min?: Maybe<SchemaMinAggregate>;
|
|
57
|
+
_sum?: Maybe<SchemaSumAggregate>;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export type AggregateSchemaName = {
|
|
61
|
+
__typename?: 'AggregateSchemaName';
|
|
62
|
+
_avg?: Maybe<SchemaNameAvgAggregate>;
|
|
63
|
+
_count?: Maybe<SchemaNameCountAggregate>;
|
|
64
|
+
_max?: Maybe<SchemaNameMaxAggregate>;
|
|
65
|
+
_min?: Maybe<SchemaNameMinAggregate>;
|
|
66
|
+
_sum?: Maybe<SchemaNameSumAggregate>;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export type AggregateServiceStat = {
|
|
70
|
+
__typename?: 'AggregateServiceStat';
|
|
71
|
+
_count?: Maybe<ServiceStatCountAggregate>;
|
|
72
|
+
_max?: Maybe<ServiceStatMaxAggregate>;
|
|
73
|
+
_min?: Maybe<ServiceStatMinAggregate>;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
export type AggregateTimestamp = {
|
|
77
|
+
__typename?: 'AggregateTimestamp';
|
|
78
|
+
_avg?: Maybe<TimestampAvgAggregate>;
|
|
79
|
+
_count?: Maybe<TimestampCountAggregate>;
|
|
80
|
+
_max?: Maybe<TimestampMaxAggregate>;
|
|
81
|
+
_min?: Maybe<TimestampMinAggregate>;
|
|
82
|
+
_sum?: Maybe<TimestampSumAggregate>;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
/** Representation of a value transfer between wallets, in both winson and ar. */
|
|
86
|
+
export type Amount = {
|
|
87
|
+
__typename?: 'Amount';
|
|
88
|
+
/** Amount as an AR string e.g. \`"0.000000000001"\`. */
|
|
89
|
+
ar: Scalars['String']['output'];
|
|
90
|
+
/** Amount as a winston string e.g. \`"1000000000000"\`. */
|
|
91
|
+
winston: Scalars['String']['output'];
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export type Attestation = {
|
|
95
|
+
__typename?: 'Attestation';
|
|
96
|
+
attester: Scalars['String']['output'];
|
|
97
|
+
data: Scalars['String']['output'];
|
|
98
|
+
decodedDataJson: Scalars['String']['output'];
|
|
99
|
+
expirationTime: Scalars['Int']['output'];
|
|
100
|
+
id: Scalars['String']['output'];
|
|
101
|
+
ipfsHash: Scalars['String']['output'];
|
|
102
|
+
isOffchain: Scalars['Boolean']['output'];
|
|
103
|
+
recipient: Scalars['String']['output'];
|
|
104
|
+
refUID: Scalars['String']['output'];
|
|
105
|
+
revocable: Scalars['Boolean']['output'];
|
|
106
|
+
revocationTime: Scalars['Int']['output'];
|
|
107
|
+
revoked: Scalars['Boolean']['output'];
|
|
108
|
+
schema: Schema;
|
|
109
|
+
schemaId: Scalars['String']['output'];
|
|
110
|
+
time: Scalars['Int']['output'];
|
|
111
|
+
timeCreated: Scalars['Int']['output'];
|
|
112
|
+
txid: Scalars['String']['output'];
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
export type AttestationAvgAggregate = {
|
|
116
|
+
__typename?: 'AttestationAvgAggregate';
|
|
117
|
+
expirationTime?: Maybe<Scalars['Float']['output']>;
|
|
118
|
+
revocationTime?: Maybe<Scalars['Float']['output']>;
|
|
119
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
120
|
+
timeCreated?: Maybe<Scalars['Float']['output']>;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
export type AttestationAvgOrderByAggregateInput = {
|
|
124
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
125
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
126
|
+
time?: InputMaybe<SortOrder>;
|
|
127
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
export type AttestationCountAggregate = {
|
|
131
|
+
__typename?: 'AttestationCountAggregate';
|
|
132
|
+
_all: Scalars['Int']['output'];
|
|
133
|
+
attester: Scalars['Int']['output'];
|
|
134
|
+
data: Scalars['Int']['output'];
|
|
135
|
+
decodedDataJson: Scalars['Int']['output'];
|
|
136
|
+
expirationTime: Scalars['Int']['output'];
|
|
137
|
+
id: Scalars['Int']['output'];
|
|
138
|
+
ipfsHash: Scalars['Int']['output'];
|
|
139
|
+
isOffchain: Scalars['Int']['output'];
|
|
140
|
+
recipient: Scalars['Int']['output'];
|
|
141
|
+
refUID: Scalars['Int']['output'];
|
|
142
|
+
revocable: Scalars['Int']['output'];
|
|
143
|
+
revocationTime: Scalars['Int']['output'];
|
|
144
|
+
revoked: Scalars['Int']['output'];
|
|
145
|
+
schemaId: Scalars['Int']['output'];
|
|
146
|
+
time: Scalars['Int']['output'];
|
|
147
|
+
timeCreated: Scalars['Int']['output'];
|
|
148
|
+
txid: Scalars['Int']['output'];
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export type AttestationCountOrderByAggregateInput = {
|
|
152
|
+
attester?: InputMaybe<SortOrder>;
|
|
153
|
+
data?: InputMaybe<SortOrder>;
|
|
154
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
155
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
156
|
+
id?: InputMaybe<SortOrder>;
|
|
157
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
158
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
159
|
+
recipient?: InputMaybe<SortOrder>;
|
|
160
|
+
refUID?: InputMaybe<SortOrder>;
|
|
161
|
+
revocable?: InputMaybe<SortOrder>;
|
|
162
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
163
|
+
revoked?: InputMaybe<SortOrder>;
|
|
164
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
165
|
+
time?: InputMaybe<SortOrder>;
|
|
166
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
167
|
+
txid?: InputMaybe<SortOrder>;
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
export type AttestationCreateInput = {
|
|
171
|
+
attester: Scalars['String']['input'];
|
|
172
|
+
data: Scalars['String']['input'];
|
|
173
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
174
|
+
expirationTime: Scalars['Int']['input'];
|
|
175
|
+
id: Scalars['String']['input'];
|
|
176
|
+
ipfsHash: Scalars['String']['input'];
|
|
177
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
178
|
+
recipient: Scalars['String']['input'];
|
|
179
|
+
refUID: Scalars['String']['input'];
|
|
180
|
+
revocable: Scalars['Boolean']['input'];
|
|
181
|
+
revocationTime: Scalars['Int']['input'];
|
|
182
|
+
revoked: Scalars['Boolean']['input'];
|
|
183
|
+
schema: SchemaCreateNestedOneWithoutAttestationsInput;
|
|
184
|
+
time: Scalars['Int']['input'];
|
|
185
|
+
timeCreated: Scalars['Int']['input'];
|
|
186
|
+
txid: Scalars['String']['input'];
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
export type AttestationCreateManyInput = {
|
|
190
|
+
attester: Scalars['String']['input'];
|
|
191
|
+
data: Scalars['String']['input'];
|
|
192
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
193
|
+
expirationTime: Scalars['Int']['input'];
|
|
194
|
+
id: Scalars['String']['input'];
|
|
195
|
+
ipfsHash: Scalars['String']['input'];
|
|
196
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
197
|
+
recipient: Scalars['String']['input'];
|
|
198
|
+
refUID: Scalars['String']['input'];
|
|
199
|
+
revocable: Scalars['Boolean']['input'];
|
|
200
|
+
revocationTime: Scalars['Int']['input'];
|
|
201
|
+
revoked: Scalars['Boolean']['input'];
|
|
202
|
+
schemaId: Scalars['String']['input'];
|
|
203
|
+
time: Scalars['Int']['input'];
|
|
204
|
+
timeCreated: Scalars['Int']['input'];
|
|
205
|
+
txid: Scalars['String']['input'];
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
export type AttestationCreateManySchemaInput = {
|
|
209
|
+
attester: Scalars['String']['input'];
|
|
210
|
+
data: Scalars['String']['input'];
|
|
211
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
212
|
+
expirationTime: Scalars['Int']['input'];
|
|
213
|
+
id: Scalars['String']['input'];
|
|
214
|
+
ipfsHash: Scalars['String']['input'];
|
|
215
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
216
|
+
recipient: Scalars['String']['input'];
|
|
217
|
+
refUID: Scalars['String']['input'];
|
|
218
|
+
revocable: Scalars['Boolean']['input'];
|
|
219
|
+
revocationTime: Scalars['Int']['input'];
|
|
220
|
+
revoked: Scalars['Boolean']['input'];
|
|
221
|
+
time: Scalars['Int']['input'];
|
|
222
|
+
timeCreated: Scalars['Int']['input'];
|
|
223
|
+
txid: Scalars['String']['input'];
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
export type AttestationCreateManySchemaInputEnvelope = {
|
|
227
|
+
data: Array<AttestationCreateManySchemaInput>;
|
|
228
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
export type AttestationCreateNestedManyWithoutSchemaInput = {
|
|
232
|
+
connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
233
|
+
connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;
|
|
234
|
+
create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;
|
|
235
|
+
createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
export type AttestationCreateOrConnectWithoutSchemaInput = {
|
|
239
|
+
create: AttestationCreateWithoutSchemaInput;
|
|
240
|
+
where: AttestationWhereUniqueInput;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
export type AttestationCreateWithoutSchemaInput = {
|
|
244
|
+
attester: Scalars['String']['input'];
|
|
245
|
+
data: Scalars['String']['input'];
|
|
246
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
247
|
+
expirationTime: Scalars['Int']['input'];
|
|
248
|
+
id: Scalars['String']['input'];
|
|
249
|
+
ipfsHash: Scalars['String']['input'];
|
|
250
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
251
|
+
recipient: Scalars['String']['input'];
|
|
252
|
+
refUID: Scalars['String']['input'];
|
|
253
|
+
revocable: Scalars['Boolean']['input'];
|
|
254
|
+
revocationTime: Scalars['Int']['input'];
|
|
255
|
+
revoked: Scalars['Boolean']['input'];
|
|
256
|
+
time: Scalars['Int']['input'];
|
|
257
|
+
timeCreated: Scalars['Int']['input'];
|
|
258
|
+
txid: Scalars['String']['input'];
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
export type AttestationGroupBy = {
|
|
262
|
+
__typename?: 'AttestationGroupBy';
|
|
263
|
+
_avg?: Maybe<AttestationAvgAggregate>;
|
|
264
|
+
_count?: Maybe<AttestationCountAggregate>;
|
|
265
|
+
_max?: Maybe<AttestationMaxAggregate>;
|
|
266
|
+
_min?: Maybe<AttestationMinAggregate>;
|
|
267
|
+
_sum?: Maybe<AttestationSumAggregate>;
|
|
268
|
+
attester: Scalars['String']['output'];
|
|
269
|
+
data: Scalars['String']['output'];
|
|
270
|
+
decodedDataJson: Scalars['String']['output'];
|
|
271
|
+
expirationTime: Scalars['Int']['output'];
|
|
272
|
+
id: Scalars['String']['output'];
|
|
273
|
+
ipfsHash: Scalars['String']['output'];
|
|
274
|
+
isOffchain: Scalars['Boolean']['output'];
|
|
275
|
+
recipient: Scalars['String']['output'];
|
|
276
|
+
refUID: Scalars['String']['output'];
|
|
277
|
+
revocable: Scalars['Boolean']['output'];
|
|
278
|
+
revocationTime: Scalars['Int']['output'];
|
|
279
|
+
revoked: Scalars['Boolean']['output'];
|
|
280
|
+
schemaId: Scalars['String']['output'];
|
|
281
|
+
time: Scalars['Int']['output'];
|
|
282
|
+
timeCreated: Scalars['Int']['output'];
|
|
283
|
+
txid: Scalars['String']['output'];
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
export type AttestationListRelationFilter = {
|
|
287
|
+
every?: InputMaybe<AttestationWhereInput>;
|
|
288
|
+
none?: InputMaybe<AttestationWhereInput>;
|
|
289
|
+
some?: InputMaybe<AttestationWhereInput>;
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export type AttestationMaxAggregate = {
|
|
293
|
+
__typename?: 'AttestationMaxAggregate';
|
|
294
|
+
attester?: Maybe<Scalars['String']['output']>;
|
|
295
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
296
|
+
decodedDataJson?: Maybe<Scalars['String']['output']>;
|
|
297
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
298
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
299
|
+
ipfsHash?: Maybe<Scalars['String']['output']>;
|
|
300
|
+
isOffchain?: Maybe<Scalars['Boolean']['output']>;
|
|
301
|
+
recipient?: Maybe<Scalars['String']['output']>;
|
|
302
|
+
refUID?: Maybe<Scalars['String']['output']>;
|
|
303
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
304
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
305
|
+
revoked?: Maybe<Scalars['Boolean']['output']>;
|
|
306
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
307
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
308
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
309
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
export type AttestationMaxOrderByAggregateInput = {
|
|
313
|
+
attester?: InputMaybe<SortOrder>;
|
|
314
|
+
data?: InputMaybe<SortOrder>;
|
|
315
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
316
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
317
|
+
id?: InputMaybe<SortOrder>;
|
|
318
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
319
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
320
|
+
recipient?: InputMaybe<SortOrder>;
|
|
321
|
+
refUID?: InputMaybe<SortOrder>;
|
|
322
|
+
revocable?: InputMaybe<SortOrder>;
|
|
323
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
324
|
+
revoked?: InputMaybe<SortOrder>;
|
|
325
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
326
|
+
time?: InputMaybe<SortOrder>;
|
|
327
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
328
|
+
txid?: InputMaybe<SortOrder>;
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
export type AttestationMinAggregate = {
|
|
332
|
+
__typename?: 'AttestationMinAggregate';
|
|
333
|
+
attester?: Maybe<Scalars['String']['output']>;
|
|
334
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
decodedDataJson?: Maybe<Scalars['String']['output']>;
|
|
336
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
337
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
338
|
+
ipfsHash?: Maybe<Scalars['String']['output']>;
|
|
339
|
+
isOffchain?: Maybe<Scalars['Boolean']['output']>;
|
|
340
|
+
recipient?: Maybe<Scalars['String']['output']>;
|
|
341
|
+
refUID?: Maybe<Scalars['String']['output']>;
|
|
342
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
343
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
344
|
+
revoked?: Maybe<Scalars['Boolean']['output']>;
|
|
345
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
347
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
348
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
export type AttestationMinOrderByAggregateInput = {
|
|
352
|
+
attester?: InputMaybe<SortOrder>;
|
|
353
|
+
data?: InputMaybe<SortOrder>;
|
|
354
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
355
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
356
|
+
id?: InputMaybe<SortOrder>;
|
|
357
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
358
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
359
|
+
recipient?: InputMaybe<SortOrder>;
|
|
360
|
+
refUID?: InputMaybe<SortOrder>;
|
|
361
|
+
revocable?: InputMaybe<SortOrder>;
|
|
362
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
363
|
+
revoked?: InputMaybe<SortOrder>;
|
|
364
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
365
|
+
time?: InputMaybe<SortOrder>;
|
|
366
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
367
|
+
txid?: InputMaybe<SortOrder>;
|
|
368
|
+
};
|
|
369
|
+
|
|
370
|
+
export type AttestationOrderByRelationAggregateInput = {
|
|
371
|
+
_count?: InputMaybe<SortOrder>;
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
export type AttestationOrderByWithAggregationInput = {
|
|
375
|
+
_avg?: InputMaybe<AttestationAvgOrderByAggregateInput>;
|
|
376
|
+
_count?: InputMaybe<AttestationCountOrderByAggregateInput>;
|
|
377
|
+
_max?: InputMaybe<AttestationMaxOrderByAggregateInput>;
|
|
378
|
+
_min?: InputMaybe<AttestationMinOrderByAggregateInput>;
|
|
379
|
+
_sum?: InputMaybe<AttestationSumOrderByAggregateInput>;
|
|
380
|
+
attester?: InputMaybe<SortOrder>;
|
|
381
|
+
data?: InputMaybe<SortOrder>;
|
|
382
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
383
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
384
|
+
id?: InputMaybe<SortOrder>;
|
|
385
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
386
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
387
|
+
recipient?: InputMaybe<SortOrder>;
|
|
388
|
+
refUID?: InputMaybe<SortOrder>;
|
|
389
|
+
revocable?: InputMaybe<SortOrder>;
|
|
390
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
391
|
+
revoked?: InputMaybe<SortOrder>;
|
|
392
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
393
|
+
time?: InputMaybe<SortOrder>;
|
|
394
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
395
|
+
txid?: InputMaybe<SortOrder>;
|
|
396
|
+
};
|
|
397
|
+
|
|
398
|
+
export type AttestationOrderByWithRelationInput = {
|
|
399
|
+
attester?: InputMaybe<SortOrder>;
|
|
400
|
+
data?: InputMaybe<SortOrder>;
|
|
401
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
402
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
403
|
+
id?: InputMaybe<SortOrder>;
|
|
404
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
405
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
406
|
+
recipient?: InputMaybe<SortOrder>;
|
|
407
|
+
refUID?: InputMaybe<SortOrder>;
|
|
408
|
+
revocable?: InputMaybe<SortOrder>;
|
|
409
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
410
|
+
revoked?: InputMaybe<SortOrder>;
|
|
411
|
+
schema?: InputMaybe<SchemaOrderByWithRelationInput>;
|
|
412
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
413
|
+
time?: InputMaybe<SortOrder>;
|
|
414
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
415
|
+
txid?: InputMaybe<SortOrder>;
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
export enum AttestationScalarFieldEnum {
|
|
419
|
+
Attester = 'attester',
|
|
420
|
+
Data = 'data',
|
|
421
|
+
DecodedDataJson = 'decodedDataJson',
|
|
422
|
+
ExpirationTime = 'expirationTime',
|
|
423
|
+
Id = 'id',
|
|
424
|
+
IpfsHash = 'ipfsHash',
|
|
425
|
+
IsOffchain = 'isOffchain',
|
|
426
|
+
Recipient = 'recipient',
|
|
427
|
+
RefUid = 'refUID',
|
|
428
|
+
Revocable = 'revocable',
|
|
429
|
+
RevocationTime = 'revocationTime',
|
|
430
|
+
Revoked = 'revoked',
|
|
431
|
+
SchemaId = 'schemaId',
|
|
432
|
+
Time = 'time',
|
|
433
|
+
TimeCreated = 'timeCreated',
|
|
434
|
+
Txid = 'txid'
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
export type AttestationScalarWhereInput = {
|
|
438
|
+
AND?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
439
|
+
NOT?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
440
|
+
OR?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
441
|
+
attester?: InputMaybe<StringFilter>;
|
|
442
|
+
data?: InputMaybe<StringFilter>;
|
|
443
|
+
decodedDataJson?: InputMaybe<StringFilter>;
|
|
444
|
+
expirationTime?: InputMaybe<IntFilter>;
|
|
445
|
+
id?: InputMaybe<StringFilter>;
|
|
446
|
+
ipfsHash?: InputMaybe<StringFilter>;
|
|
447
|
+
isOffchain?: InputMaybe<BoolFilter>;
|
|
448
|
+
recipient?: InputMaybe<StringFilter>;
|
|
449
|
+
refUID?: InputMaybe<StringFilter>;
|
|
450
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
451
|
+
revocationTime?: InputMaybe<IntFilter>;
|
|
452
|
+
revoked?: InputMaybe<BoolFilter>;
|
|
453
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
454
|
+
time?: InputMaybe<IntFilter>;
|
|
455
|
+
timeCreated?: InputMaybe<IntFilter>;
|
|
456
|
+
txid?: InputMaybe<StringFilter>;
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
export type AttestationScalarWhereWithAggregatesInput = {
|
|
460
|
+
AND?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
461
|
+
NOT?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
462
|
+
OR?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
463
|
+
attester?: InputMaybe<StringWithAggregatesFilter>;
|
|
464
|
+
data?: InputMaybe<StringWithAggregatesFilter>;
|
|
465
|
+
decodedDataJson?: InputMaybe<StringWithAggregatesFilter>;
|
|
466
|
+
expirationTime?: InputMaybe<IntWithAggregatesFilter>;
|
|
467
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
468
|
+
ipfsHash?: InputMaybe<StringWithAggregatesFilter>;
|
|
469
|
+
isOffchain?: InputMaybe<BoolWithAggregatesFilter>;
|
|
470
|
+
recipient?: InputMaybe<StringWithAggregatesFilter>;
|
|
471
|
+
refUID?: InputMaybe<StringWithAggregatesFilter>;
|
|
472
|
+
revocable?: InputMaybe<BoolWithAggregatesFilter>;
|
|
473
|
+
revocationTime?: InputMaybe<IntWithAggregatesFilter>;
|
|
474
|
+
revoked?: InputMaybe<BoolWithAggregatesFilter>;
|
|
475
|
+
schemaId?: InputMaybe<StringWithAggregatesFilter>;
|
|
476
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
477
|
+
timeCreated?: InputMaybe<IntWithAggregatesFilter>;
|
|
478
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
export type AttestationSumAggregate = {
|
|
482
|
+
__typename?: 'AttestationSumAggregate';
|
|
483
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
484
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
485
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
486
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
487
|
+
};
|
|
488
|
+
|
|
489
|
+
export type AttestationSumOrderByAggregateInput = {
|
|
490
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
491
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
492
|
+
time?: InputMaybe<SortOrder>;
|
|
493
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
494
|
+
};
|
|
495
|
+
|
|
496
|
+
export type AttestationUpdateInput = {
|
|
497
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
498
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
499
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
500
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
501
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
502
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
503
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
504
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
505
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
506
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
507
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
508
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
509
|
+
schema?: InputMaybe<SchemaUpdateOneRequiredWithoutAttestationsNestedInput>;
|
|
510
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
511
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
512
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
513
|
+
};
|
|
514
|
+
|
|
515
|
+
export type AttestationUpdateManyMutationInput = {
|
|
516
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
517
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
518
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
519
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
520
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
521
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
522
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
523
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
524
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
525
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
526
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
527
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
528
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
529
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
530
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
531
|
+
};
|
|
532
|
+
|
|
533
|
+
export type AttestationUpdateManyWithWhereWithoutSchemaInput = {
|
|
534
|
+
data: AttestationUpdateManyMutationInput;
|
|
535
|
+
where: AttestationScalarWhereInput;
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
export type AttestationUpdateManyWithoutSchemaNestedInput = {
|
|
539
|
+
connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
540
|
+
connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;
|
|
541
|
+
create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;
|
|
542
|
+
createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;
|
|
543
|
+
delete?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
544
|
+
deleteMany?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
545
|
+
disconnect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
546
|
+
set?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
547
|
+
update?: InputMaybe<Array<AttestationUpdateWithWhereUniqueWithoutSchemaInput>>;
|
|
548
|
+
updateMany?: InputMaybe<Array<AttestationUpdateManyWithWhereWithoutSchemaInput>>;
|
|
549
|
+
upsert?: InputMaybe<Array<AttestationUpsertWithWhereUniqueWithoutSchemaInput>>;
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
export type AttestationUpdateWithWhereUniqueWithoutSchemaInput = {
|
|
553
|
+
data: AttestationUpdateWithoutSchemaInput;
|
|
554
|
+
where: AttestationWhereUniqueInput;
|
|
555
|
+
};
|
|
556
|
+
|
|
557
|
+
export type AttestationUpdateWithoutSchemaInput = {
|
|
558
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
559
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
560
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
561
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
562
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
563
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
564
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
565
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
566
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
567
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
568
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
569
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
570
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
571
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
572
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
573
|
+
};
|
|
574
|
+
|
|
575
|
+
export type AttestationUpsertWithWhereUniqueWithoutSchemaInput = {
|
|
576
|
+
create: AttestationCreateWithoutSchemaInput;
|
|
577
|
+
update: AttestationUpdateWithoutSchemaInput;
|
|
578
|
+
where: AttestationWhereUniqueInput;
|
|
579
|
+
};
|
|
580
|
+
|
|
581
|
+
export type AttestationWhereInput = {
|
|
582
|
+
AND?: InputMaybe<Array<AttestationWhereInput>>;
|
|
583
|
+
NOT?: InputMaybe<Array<AttestationWhereInput>>;
|
|
584
|
+
OR?: InputMaybe<Array<AttestationWhereInput>>;
|
|
585
|
+
attester?: InputMaybe<StringFilter>;
|
|
586
|
+
data?: InputMaybe<StringFilter>;
|
|
587
|
+
decodedDataJson?: InputMaybe<StringFilter>;
|
|
588
|
+
expirationTime?: InputMaybe<IntFilter>;
|
|
589
|
+
id?: InputMaybe<StringFilter>;
|
|
590
|
+
ipfsHash?: InputMaybe<StringFilter>;
|
|
591
|
+
isOffchain?: InputMaybe<BoolFilter>;
|
|
592
|
+
recipient?: InputMaybe<StringFilter>;
|
|
593
|
+
refUID?: InputMaybe<StringFilter>;
|
|
594
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
595
|
+
revocationTime?: InputMaybe<IntFilter>;
|
|
596
|
+
revoked?: InputMaybe<BoolFilter>;
|
|
597
|
+
schema?: InputMaybe<SchemaRelationFilter>;
|
|
598
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
599
|
+
time?: InputMaybe<IntFilter>;
|
|
600
|
+
timeCreated?: InputMaybe<IntFilter>;
|
|
601
|
+
txid?: InputMaybe<StringFilter>;
|
|
602
|
+
};
|
|
603
|
+
|
|
604
|
+
export type AttestationWhereUniqueInput = {
|
|
605
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
export type Block = {
|
|
609
|
+
__typename?: 'Block';
|
|
610
|
+
/** The block height. */
|
|
611
|
+
height: Scalars['Int']['output'];
|
|
612
|
+
/** The block ID. */
|
|
613
|
+
id: Scalars['ID']['output'];
|
|
614
|
+
/** The previous block ID. */
|
|
615
|
+
previous: Scalars['ID']['output'];
|
|
616
|
+
/** The block timestamp (UTC). */
|
|
617
|
+
timestamp: Scalars['Int']['output'];
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Paginated result set using the GraphQL cursor spec,
|
|
622
|
+
* see: https://relay.dev/graphql/connections.htm.
|
|
623
|
+
*/
|
|
624
|
+
export type BlockConnection = {
|
|
625
|
+
__typename?: 'BlockConnection';
|
|
626
|
+
edges: Array<BlockEdge>;
|
|
627
|
+
pageInfo: PageInfo;
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
/** Paginated result set using the GraphQL cursor spec. */
|
|
631
|
+
export type BlockEdge = {
|
|
632
|
+
__typename?: 'BlockEdge';
|
|
633
|
+
/**
|
|
634
|
+
* The cursor value for fetching the next page.
|
|
635
|
+
*
|
|
636
|
+
* Pass this to the \`after\` parameter in \`blocks(after: $cursor)\`, the next page will start from the next item after this.
|
|
637
|
+
*/
|
|
638
|
+
cursor: Scalars['String']['output'];
|
|
639
|
+
/** A block object. */
|
|
640
|
+
node: Block;
|
|
641
|
+
};
|
|
642
|
+
|
|
643
|
+
/** Find blocks within a given range */
|
|
644
|
+
export type BlockFilter = {
|
|
645
|
+
/** Maximum block height to filter to */
|
|
646
|
+
max?: InputMaybe<Scalars['Int']['input']>;
|
|
647
|
+
/** Minimum block height to filter from */
|
|
648
|
+
min?: InputMaybe<Scalars['Int']['input']>;
|
|
649
|
+
};
|
|
650
|
+
|
|
651
|
+
export type BoolFieldUpdateOperationsInput = {
|
|
652
|
+
set?: InputMaybe<Scalars['Boolean']['input']>;
|
|
653
|
+
};
|
|
654
|
+
|
|
655
|
+
export type BoolFilter = {
|
|
656
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
657
|
+
not?: InputMaybe<NestedBoolFilter>;
|
|
658
|
+
};
|
|
659
|
+
|
|
660
|
+
export type BoolWithAggregatesFilter = {
|
|
661
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
662
|
+
_max?: InputMaybe<NestedBoolFilter>;
|
|
663
|
+
_min?: InputMaybe<NestedBoolFilter>;
|
|
664
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
665
|
+
not?: InputMaybe<NestedBoolWithAggregatesFilter>;
|
|
666
|
+
};
|
|
667
|
+
|
|
668
|
+
/**
|
|
669
|
+
* The data bundle containing the current data item.
|
|
670
|
+
* See: https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md.
|
|
671
|
+
*/
|
|
672
|
+
export type Bundle = {
|
|
673
|
+
__typename?: 'Bundle';
|
|
674
|
+
/** ID of the containing data bundle. */
|
|
675
|
+
id: Scalars['ID']['output'];
|
|
676
|
+
};
|
|
677
|
+
|
|
678
|
+
export type EnsName = {
|
|
679
|
+
__typename?: 'EnsName';
|
|
680
|
+
id: Scalars['String']['output'];
|
|
681
|
+
name: Scalars['String']['output'];
|
|
682
|
+
timestamp: Scalars['Int']['output'];
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
export type EnsNameAvgAggregate = {
|
|
686
|
+
__typename?: 'EnsNameAvgAggregate';
|
|
687
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
export type EnsNameAvgOrderByAggregateInput = {
|
|
691
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
export type EnsNameCountAggregate = {
|
|
695
|
+
__typename?: 'EnsNameCountAggregate';
|
|
696
|
+
_all: Scalars['Int']['output'];
|
|
697
|
+
id: Scalars['Int']['output'];
|
|
698
|
+
name: Scalars['Int']['output'];
|
|
699
|
+
timestamp: Scalars['Int']['output'];
|
|
700
|
+
};
|
|
701
|
+
|
|
702
|
+
export type EnsNameCountOrderByAggregateInput = {
|
|
703
|
+
id?: InputMaybe<SortOrder>;
|
|
704
|
+
name?: InputMaybe<SortOrder>;
|
|
705
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
706
|
+
};
|
|
707
|
+
|
|
708
|
+
export type EnsNameCreateInput = {
|
|
709
|
+
id: Scalars['String']['input'];
|
|
710
|
+
name: Scalars['String']['input'];
|
|
711
|
+
timestamp: Scalars['Int']['input'];
|
|
712
|
+
};
|
|
713
|
+
|
|
714
|
+
export type EnsNameCreateManyInput = {
|
|
715
|
+
id: Scalars['String']['input'];
|
|
716
|
+
name: Scalars['String']['input'];
|
|
717
|
+
timestamp: Scalars['Int']['input'];
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
export type EnsNameGroupBy = {
|
|
721
|
+
__typename?: 'EnsNameGroupBy';
|
|
722
|
+
_avg?: Maybe<EnsNameAvgAggregate>;
|
|
723
|
+
_count?: Maybe<EnsNameCountAggregate>;
|
|
724
|
+
_max?: Maybe<EnsNameMaxAggregate>;
|
|
725
|
+
_min?: Maybe<EnsNameMinAggregate>;
|
|
726
|
+
_sum?: Maybe<EnsNameSumAggregate>;
|
|
727
|
+
id: Scalars['String']['output'];
|
|
728
|
+
name: Scalars['String']['output'];
|
|
729
|
+
timestamp: Scalars['Int']['output'];
|
|
730
|
+
};
|
|
731
|
+
|
|
732
|
+
export type EnsNameMaxAggregate = {
|
|
733
|
+
__typename?: 'EnsNameMaxAggregate';
|
|
734
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
735
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
736
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
737
|
+
};
|
|
738
|
+
|
|
739
|
+
export type EnsNameMaxOrderByAggregateInput = {
|
|
740
|
+
id?: InputMaybe<SortOrder>;
|
|
741
|
+
name?: InputMaybe<SortOrder>;
|
|
742
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
export type EnsNameMinAggregate = {
|
|
746
|
+
__typename?: 'EnsNameMinAggregate';
|
|
747
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
748
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
749
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
750
|
+
};
|
|
751
|
+
|
|
752
|
+
export type EnsNameMinOrderByAggregateInput = {
|
|
753
|
+
id?: InputMaybe<SortOrder>;
|
|
754
|
+
name?: InputMaybe<SortOrder>;
|
|
755
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
756
|
+
};
|
|
757
|
+
|
|
758
|
+
export type EnsNameOrderByWithAggregationInput = {
|
|
759
|
+
_avg?: InputMaybe<EnsNameAvgOrderByAggregateInput>;
|
|
760
|
+
_count?: InputMaybe<EnsNameCountOrderByAggregateInput>;
|
|
761
|
+
_max?: InputMaybe<EnsNameMaxOrderByAggregateInput>;
|
|
762
|
+
_min?: InputMaybe<EnsNameMinOrderByAggregateInput>;
|
|
763
|
+
_sum?: InputMaybe<EnsNameSumOrderByAggregateInput>;
|
|
764
|
+
id?: InputMaybe<SortOrder>;
|
|
765
|
+
name?: InputMaybe<SortOrder>;
|
|
766
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
767
|
+
};
|
|
768
|
+
|
|
769
|
+
export type EnsNameOrderByWithRelationInput = {
|
|
770
|
+
id?: InputMaybe<SortOrder>;
|
|
771
|
+
name?: InputMaybe<SortOrder>;
|
|
772
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
773
|
+
};
|
|
774
|
+
|
|
775
|
+
export enum EnsNameScalarFieldEnum {
|
|
776
|
+
Id = 'id',
|
|
777
|
+
Name = 'name',
|
|
778
|
+
Timestamp = 'timestamp'
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
export type EnsNameScalarWhereWithAggregatesInput = {
|
|
782
|
+
AND?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
783
|
+
NOT?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
784
|
+
OR?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
785
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
786
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
787
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
788
|
+
};
|
|
789
|
+
|
|
790
|
+
export type EnsNameSumAggregate = {
|
|
791
|
+
__typename?: 'EnsNameSumAggregate';
|
|
792
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
export type EnsNameSumOrderByAggregateInput = {
|
|
796
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
797
|
+
};
|
|
798
|
+
|
|
799
|
+
export type EnsNameUpdateInput = {
|
|
800
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
801
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
802
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
803
|
+
};
|
|
804
|
+
|
|
805
|
+
export type EnsNameUpdateManyMutationInput = {
|
|
806
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
807
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
808
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
809
|
+
};
|
|
810
|
+
|
|
811
|
+
export type EnsNameWhereInput = {
|
|
812
|
+
AND?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
813
|
+
NOT?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
814
|
+
OR?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
815
|
+
id?: InputMaybe<StringFilter>;
|
|
816
|
+
name?: InputMaybe<StringFilter>;
|
|
817
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
818
|
+
};
|
|
819
|
+
|
|
820
|
+
export type EnsNameWhereUniqueInput = {
|
|
821
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
822
|
+
};
|
|
823
|
+
|
|
824
|
+
export type IntFieldUpdateOperationsInput = {
|
|
825
|
+
decrement?: InputMaybe<Scalars['Int']['input']>;
|
|
826
|
+
divide?: InputMaybe<Scalars['Int']['input']>;
|
|
827
|
+
increment?: InputMaybe<Scalars['Int']['input']>;
|
|
828
|
+
multiply?: InputMaybe<Scalars['Int']['input']>;
|
|
829
|
+
set?: InputMaybe<Scalars['Int']['input']>;
|
|
830
|
+
};
|
|
831
|
+
|
|
832
|
+
export type IntFilter = {
|
|
833
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
834
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
835
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
836
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
837
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
838
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
839
|
+
not?: InputMaybe<NestedIntFilter>;
|
|
840
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
841
|
+
};
|
|
842
|
+
|
|
843
|
+
export type IntWithAggregatesFilter = {
|
|
844
|
+
_avg?: InputMaybe<NestedFloatFilter>;
|
|
845
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
846
|
+
_max?: InputMaybe<NestedIntFilter>;
|
|
847
|
+
_min?: InputMaybe<NestedIntFilter>;
|
|
848
|
+
_sum?: InputMaybe<NestedIntFilter>;
|
|
849
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
850
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
851
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
852
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
853
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
854
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
855
|
+
not?: InputMaybe<NestedIntWithAggregatesFilter>;
|
|
856
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
857
|
+
};
|
|
858
|
+
|
|
859
|
+
/** Basic metadata about the transaction data payload. */
|
|
860
|
+
export type MetaData = {
|
|
861
|
+
__typename?: 'MetaData';
|
|
862
|
+
/** Size of the associated data in bytes. */
|
|
863
|
+
size: Scalars['String']['output'];
|
|
864
|
+
/** Type is derrived from the \`content-type\` tag on a transaction. */
|
|
865
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
866
|
+
};
|
|
867
|
+
|
|
868
|
+
export type Mutation = {
|
|
869
|
+
__typename?: 'Mutation';
|
|
870
|
+
createManyAttestation: AffectedRowsOutput;
|
|
871
|
+
createManyEnsName: AffectedRowsOutput;
|
|
872
|
+
createManyOffchainRevocation: AffectedRowsOutput;
|
|
873
|
+
createManySchema: AffectedRowsOutput;
|
|
874
|
+
createManySchemaName: AffectedRowsOutput;
|
|
875
|
+
createManyServiceStat: AffectedRowsOutput;
|
|
876
|
+
createManyTimestamp: AffectedRowsOutput;
|
|
877
|
+
createOneAttestation: Attestation;
|
|
878
|
+
createOneEnsName: EnsName;
|
|
879
|
+
createOneOffchainRevocation: OffchainRevocation;
|
|
880
|
+
createOneSchema: Schema;
|
|
881
|
+
createOneSchemaName: SchemaName;
|
|
882
|
+
createOneServiceStat: ServiceStat;
|
|
883
|
+
createOneTimestamp: Timestamp;
|
|
884
|
+
deleteManyAttestation: AffectedRowsOutput;
|
|
885
|
+
deleteManyEnsName: AffectedRowsOutput;
|
|
886
|
+
deleteManyOffchainRevocation: AffectedRowsOutput;
|
|
887
|
+
deleteManySchema: AffectedRowsOutput;
|
|
888
|
+
deleteManySchemaName: AffectedRowsOutput;
|
|
889
|
+
deleteManyServiceStat: AffectedRowsOutput;
|
|
890
|
+
deleteManyTimestamp: AffectedRowsOutput;
|
|
891
|
+
deleteOneAttestation?: Maybe<Attestation>;
|
|
892
|
+
deleteOneEnsName?: Maybe<EnsName>;
|
|
893
|
+
deleteOneOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
894
|
+
deleteOneSchema?: Maybe<Schema>;
|
|
895
|
+
deleteOneSchemaName?: Maybe<SchemaName>;
|
|
896
|
+
deleteOneServiceStat?: Maybe<ServiceStat>;
|
|
897
|
+
deleteOneTimestamp?: Maybe<Timestamp>;
|
|
898
|
+
updateManyAttestation: AffectedRowsOutput;
|
|
899
|
+
updateManyEnsName: AffectedRowsOutput;
|
|
900
|
+
updateManyOffchainRevocation: AffectedRowsOutput;
|
|
901
|
+
updateManySchema: AffectedRowsOutput;
|
|
902
|
+
updateManySchemaName: AffectedRowsOutput;
|
|
903
|
+
updateManyServiceStat: AffectedRowsOutput;
|
|
904
|
+
updateManyTimestamp: AffectedRowsOutput;
|
|
905
|
+
updateOneAttestation?: Maybe<Attestation>;
|
|
906
|
+
updateOneEnsName?: Maybe<EnsName>;
|
|
907
|
+
updateOneOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
908
|
+
updateOneSchema?: Maybe<Schema>;
|
|
909
|
+
updateOneSchemaName?: Maybe<SchemaName>;
|
|
910
|
+
updateOneServiceStat?: Maybe<ServiceStat>;
|
|
911
|
+
updateOneTimestamp?: Maybe<Timestamp>;
|
|
912
|
+
upsertOneAttestation: Attestation;
|
|
913
|
+
upsertOneEnsName: EnsName;
|
|
914
|
+
upsertOneOffchainRevocation: OffchainRevocation;
|
|
915
|
+
upsertOneSchema: Schema;
|
|
916
|
+
upsertOneSchemaName: SchemaName;
|
|
917
|
+
upsertOneServiceStat: ServiceStat;
|
|
918
|
+
upsertOneTimestamp: Timestamp;
|
|
919
|
+
};
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
export type MutationCreateManyAttestationArgs = {
|
|
923
|
+
data: Array<AttestationCreateManyInput>;
|
|
924
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
925
|
+
};
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
export type MutationCreateManyEnsNameArgs = {
|
|
929
|
+
data: Array<EnsNameCreateManyInput>;
|
|
930
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
931
|
+
};
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
export type MutationCreateManyOffchainRevocationArgs = {
|
|
935
|
+
data: Array<OffchainRevocationCreateManyInput>;
|
|
936
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
937
|
+
};
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
export type MutationCreateManySchemaArgs = {
|
|
941
|
+
data: Array<SchemaCreateManyInput>;
|
|
942
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
943
|
+
};
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
export type MutationCreateManySchemaNameArgs = {
|
|
947
|
+
data: Array<SchemaNameCreateManyInput>;
|
|
948
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
949
|
+
};
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
export type MutationCreateManyServiceStatArgs = {
|
|
953
|
+
data: Array<ServiceStatCreateManyInput>;
|
|
954
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
955
|
+
};
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
export type MutationCreateManyTimestampArgs = {
|
|
959
|
+
data: Array<TimestampCreateManyInput>;
|
|
960
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
961
|
+
};
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
export type MutationCreateOneAttestationArgs = {
|
|
965
|
+
data: AttestationCreateInput;
|
|
966
|
+
};
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
export type MutationCreateOneEnsNameArgs = {
|
|
970
|
+
data: EnsNameCreateInput;
|
|
971
|
+
};
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
export type MutationCreateOneOffchainRevocationArgs = {
|
|
975
|
+
data: OffchainRevocationCreateInput;
|
|
976
|
+
};
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
export type MutationCreateOneSchemaArgs = {
|
|
980
|
+
data: SchemaCreateInput;
|
|
981
|
+
};
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
export type MutationCreateOneSchemaNameArgs = {
|
|
985
|
+
data: SchemaNameCreateInput;
|
|
986
|
+
};
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
export type MutationCreateOneServiceStatArgs = {
|
|
990
|
+
data: ServiceStatCreateInput;
|
|
991
|
+
};
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
export type MutationCreateOneTimestampArgs = {
|
|
995
|
+
data: TimestampCreateInput;
|
|
996
|
+
};
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
export type MutationDeleteManyAttestationArgs = {
|
|
1000
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1001
|
+
};
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
export type MutationDeleteManyEnsNameArgs = {
|
|
1005
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1006
|
+
};
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
export type MutationDeleteManyOffchainRevocationArgs = {
|
|
1010
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1011
|
+
};
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
export type MutationDeleteManySchemaArgs = {
|
|
1015
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1016
|
+
};
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
export type MutationDeleteManySchemaNameArgs = {
|
|
1020
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1021
|
+
};
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
export type MutationDeleteManyServiceStatArgs = {
|
|
1025
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1026
|
+
};
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
export type MutationDeleteManyTimestampArgs = {
|
|
1030
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1031
|
+
};
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
export type MutationDeleteOneAttestationArgs = {
|
|
1035
|
+
where: AttestationWhereUniqueInput;
|
|
1036
|
+
};
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
export type MutationDeleteOneEnsNameArgs = {
|
|
1040
|
+
where: EnsNameWhereUniqueInput;
|
|
1041
|
+
};
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
export type MutationDeleteOneOffchainRevocationArgs = {
|
|
1045
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1046
|
+
};
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
export type MutationDeleteOneSchemaArgs = {
|
|
1050
|
+
where: SchemaWhereUniqueInput;
|
|
1051
|
+
};
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
|
+
export type MutationDeleteOneSchemaNameArgs = {
|
|
1055
|
+
where: SchemaNameWhereUniqueInput;
|
|
1056
|
+
};
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
|
+
export type MutationDeleteOneServiceStatArgs = {
|
|
1060
|
+
where: ServiceStatWhereUniqueInput;
|
|
1061
|
+
};
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
export type MutationDeleteOneTimestampArgs = {
|
|
1065
|
+
where: TimestampWhereUniqueInput;
|
|
1066
|
+
};
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
export type MutationUpdateManyAttestationArgs = {
|
|
1070
|
+
data: AttestationUpdateManyMutationInput;
|
|
1071
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1072
|
+
};
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
export type MutationUpdateManyEnsNameArgs = {
|
|
1076
|
+
data: EnsNameUpdateManyMutationInput;
|
|
1077
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1078
|
+
};
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
export type MutationUpdateManyOffchainRevocationArgs = {
|
|
1082
|
+
data: OffchainRevocationUpdateManyMutationInput;
|
|
1083
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1084
|
+
};
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
export type MutationUpdateManySchemaArgs = {
|
|
1088
|
+
data: SchemaUpdateManyMutationInput;
|
|
1089
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1090
|
+
};
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
export type MutationUpdateManySchemaNameArgs = {
|
|
1094
|
+
data: SchemaNameUpdateManyMutationInput;
|
|
1095
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1096
|
+
};
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
export type MutationUpdateManyServiceStatArgs = {
|
|
1100
|
+
data: ServiceStatUpdateManyMutationInput;
|
|
1101
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1102
|
+
};
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
export type MutationUpdateManyTimestampArgs = {
|
|
1106
|
+
data: TimestampUpdateManyMutationInput;
|
|
1107
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1108
|
+
};
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
export type MutationUpdateOneAttestationArgs = {
|
|
1112
|
+
data: AttestationUpdateInput;
|
|
1113
|
+
where: AttestationWhereUniqueInput;
|
|
1114
|
+
};
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
export type MutationUpdateOneEnsNameArgs = {
|
|
1118
|
+
data: EnsNameUpdateInput;
|
|
1119
|
+
where: EnsNameWhereUniqueInput;
|
|
1120
|
+
};
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
export type MutationUpdateOneOffchainRevocationArgs = {
|
|
1124
|
+
data: OffchainRevocationUpdateInput;
|
|
1125
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
export type MutationUpdateOneSchemaArgs = {
|
|
1130
|
+
data: SchemaUpdateInput;
|
|
1131
|
+
where: SchemaWhereUniqueInput;
|
|
1132
|
+
};
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
export type MutationUpdateOneSchemaNameArgs = {
|
|
1136
|
+
data: SchemaNameUpdateInput;
|
|
1137
|
+
where: SchemaNameWhereUniqueInput;
|
|
1138
|
+
};
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
export type MutationUpdateOneServiceStatArgs = {
|
|
1142
|
+
data: ServiceStatUpdateInput;
|
|
1143
|
+
where: ServiceStatWhereUniqueInput;
|
|
1144
|
+
};
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
export type MutationUpdateOneTimestampArgs = {
|
|
1148
|
+
data: TimestampUpdateInput;
|
|
1149
|
+
where: TimestampWhereUniqueInput;
|
|
1150
|
+
};
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
export type MutationUpsertOneAttestationArgs = {
|
|
1154
|
+
create: AttestationCreateInput;
|
|
1155
|
+
update: AttestationUpdateInput;
|
|
1156
|
+
where: AttestationWhereUniqueInput;
|
|
1157
|
+
};
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
export type MutationUpsertOneEnsNameArgs = {
|
|
1161
|
+
create: EnsNameCreateInput;
|
|
1162
|
+
update: EnsNameUpdateInput;
|
|
1163
|
+
where: EnsNameWhereUniqueInput;
|
|
1164
|
+
};
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
export type MutationUpsertOneOffchainRevocationArgs = {
|
|
1168
|
+
create: OffchainRevocationCreateInput;
|
|
1169
|
+
update: OffchainRevocationUpdateInput;
|
|
1170
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1171
|
+
};
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
export type MutationUpsertOneSchemaArgs = {
|
|
1175
|
+
create: SchemaCreateInput;
|
|
1176
|
+
update: SchemaUpdateInput;
|
|
1177
|
+
where: SchemaWhereUniqueInput;
|
|
1178
|
+
};
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
export type MutationUpsertOneSchemaNameArgs = {
|
|
1182
|
+
create: SchemaNameCreateInput;
|
|
1183
|
+
update: SchemaNameUpdateInput;
|
|
1184
|
+
where: SchemaNameWhereUniqueInput;
|
|
1185
|
+
};
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
export type MutationUpsertOneServiceStatArgs = {
|
|
1189
|
+
create: ServiceStatCreateInput;
|
|
1190
|
+
update: ServiceStatUpdateInput;
|
|
1191
|
+
where: ServiceStatWhereUniqueInput;
|
|
1192
|
+
};
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
export type MutationUpsertOneTimestampArgs = {
|
|
1196
|
+
create: TimestampCreateInput;
|
|
1197
|
+
update: TimestampUpdateInput;
|
|
1198
|
+
where: TimestampWhereUniqueInput;
|
|
1199
|
+
};
|
|
1200
|
+
|
|
1201
|
+
export type NestedBoolFilter = {
|
|
1202
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1203
|
+
not?: InputMaybe<NestedBoolFilter>;
|
|
1204
|
+
};
|
|
1205
|
+
|
|
1206
|
+
export type NestedBoolWithAggregatesFilter = {
|
|
1207
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
1208
|
+
_max?: InputMaybe<NestedBoolFilter>;
|
|
1209
|
+
_min?: InputMaybe<NestedBoolFilter>;
|
|
1210
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1211
|
+
not?: InputMaybe<NestedBoolWithAggregatesFilter>;
|
|
1212
|
+
};
|
|
1213
|
+
|
|
1214
|
+
export type NestedFloatFilter = {
|
|
1215
|
+
equals?: InputMaybe<Scalars['Float']['input']>;
|
|
1216
|
+
gt?: InputMaybe<Scalars['Float']['input']>;
|
|
1217
|
+
gte?: InputMaybe<Scalars['Float']['input']>;
|
|
1218
|
+
in?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
1219
|
+
lt?: InputMaybe<Scalars['Float']['input']>;
|
|
1220
|
+
lte?: InputMaybe<Scalars['Float']['input']>;
|
|
1221
|
+
not?: InputMaybe<NestedFloatFilter>;
|
|
1222
|
+
notIn?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
1223
|
+
};
|
|
1224
|
+
|
|
1225
|
+
export type NestedIntFilter = {
|
|
1226
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
1227
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1228
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1229
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1230
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1231
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1232
|
+
not?: InputMaybe<NestedIntFilter>;
|
|
1233
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1236
|
+
export type NestedIntWithAggregatesFilter = {
|
|
1237
|
+
_avg?: InputMaybe<NestedFloatFilter>;
|
|
1238
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
1239
|
+
_max?: InputMaybe<NestedIntFilter>;
|
|
1240
|
+
_min?: InputMaybe<NestedIntFilter>;
|
|
1241
|
+
_sum?: InputMaybe<NestedIntFilter>;
|
|
1242
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
1243
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1244
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1245
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1246
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1247
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1248
|
+
not?: InputMaybe<NestedIntWithAggregatesFilter>;
|
|
1249
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1250
|
+
};
|
|
1251
|
+
|
|
1252
|
+
export type NestedStringFilter = {
|
|
1253
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
1254
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1255
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
1256
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
1257
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
1258
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1259
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
1260
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
1261
|
+
not?: InputMaybe<NestedStringFilter>;
|
|
1262
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1263
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1264
|
+
};
|
|
1265
|
+
|
|
1266
|
+
export type NestedStringWithAggregatesFilter = {
|
|
1267
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
1268
|
+
_max?: InputMaybe<NestedStringFilter>;
|
|
1269
|
+
_min?: InputMaybe<NestedStringFilter>;
|
|
1270
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
1271
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1272
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
1273
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
1274
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
1275
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1276
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
1277
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
1278
|
+
not?: InputMaybe<NestedStringWithAggregatesFilter>;
|
|
1279
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1280
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1283
|
+
export type OffchainRevocation = {
|
|
1284
|
+
__typename?: 'OffchainRevocation';
|
|
1285
|
+
from: Scalars['String']['output'];
|
|
1286
|
+
id: Scalars['String']['output'];
|
|
1287
|
+
timestamp: Scalars['Int']['output'];
|
|
1288
|
+
txid: Scalars['String']['output'];
|
|
1289
|
+
uid: Scalars['String']['output'];
|
|
1290
|
+
};
|
|
1291
|
+
|
|
1292
|
+
export type OffchainRevocationAvgAggregate = {
|
|
1293
|
+
__typename?: 'OffchainRevocationAvgAggregate';
|
|
1294
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
1295
|
+
};
|
|
1296
|
+
|
|
1297
|
+
export type OffchainRevocationAvgOrderByAggregateInput = {
|
|
1298
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1299
|
+
};
|
|
1300
|
+
|
|
1301
|
+
export type OffchainRevocationCountAggregate = {
|
|
1302
|
+
__typename?: 'OffchainRevocationCountAggregate';
|
|
1303
|
+
_all: Scalars['Int']['output'];
|
|
1304
|
+
from: Scalars['Int']['output'];
|
|
1305
|
+
id: Scalars['Int']['output'];
|
|
1306
|
+
timestamp: Scalars['Int']['output'];
|
|
1307
|
+
txid: Scalars['Int']['output'];
|
|
1308
|
+
uid: Scalars['Int']['output'];
|
|
1309
|
+
};
|
|
1310
|
+
|
|
1311
|
+
export type OffchainRevocationCountOrderByAggregateInput = {
|
|
1312
|
+
from?: InputMaybe<SortOrder>;
|
|
1313
|
+
id?: InputMaybe<SortOrder>;
|
|
1314
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1315
|
+
txid?: InputMaybe<SortOrder>;
|
|
1316
|
+
uid?: InputMaybe<SortOrder>;
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
export type OffchainRevocationCreateInput = {
|
|
1320
|
+
from: Scalars['String']['input'];
|
|
1321
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1322
|
+
timestamp: Scalars['Int']['input'];
|
|
1323
|
+
txid: Scalars['String']['input'];
|
|
1324
|
+
uid: Scalars['String']['input'];
|
|
1325
|
+
};
|
|
1326
|
+
|
|
1327
|
+
export type OffchainRevocationCreateManyInput = {
|
|
1328
|
+
from: Scalars['String']['input'];
|
|
1329
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1330
|
+
timestamp: Scalars['Int']['input'];
|
|
1331
|
+
txid: Scalars['String']['input'];
|
|
1332
|
+
uid: Scalars['String']['input'];
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
export type OffchainRevocationGroupBy = {
|
|
1336
|
+
__typename?: 'OffchainRevocationGroupBy';
|
|
1337
|
+
_avg?: Maybe<OffchainRevocationAvgAggregate>;
|
|
1338
|
+
_count?: Maybe<OffchainRevocationCountAggregate>;
|
|
1339
|
+
_max?: Maybe<OffchainRevocationMaxAggregate>;
|
|
1340
|
+
_min?: Maybe<OffchainRevocationMinAggregate>;
|
|
1341
|
+
_sum?: Maybe<OffchainRevocationSumAggregate>;
|
|
1342
|
+
from: Scalars['String']['output'];
|
|
1343
|
+
id: Scalars['String']['output'];
|
|
1344
|
+
timestamp: Scalars['Int']['output'];
|
|
1345
|
+
txid: Scalars['String']['output'];
|
|
1346
|
+
uid: Scalars['String']['output'];
|
|
1347
|
+
};
|
|
1348
|
+
|
|
1349
|
+
export type OffchainRevocationMaxAggregate = {
|
|
1350
|
+
__typename?: 'OffchainRevocationMaxAggregate';
|
|
1351
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
1352
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1353
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1354
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1355
|
+
uid?: Maybe<Scalars['String']['output']>;
|
|
1356
|
+
};
|
|
1357
|
+
|
|
1358
|
+
export type OffchainRevocationMaxOrderByAggregateInput = {
|
|
1359
|
+
from?: InputMaybe<SortOrder>;
|
|
1360
|
+
id?: InputMaybe<SortOrder>;
|
|
1361
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1362
|
+
txid?: InputMaybe<SortOrder>;
|
|
1363
|
+
uid?: InputMaybe<SortOrder>;
|
|
1364
|
+
};
|
|
1365
|
+
|
|
1366
|
+
export type OffchainRevocationMinAggregate = {
|
|
1367
|
+
__typename?: 'OffchainRevocationMinAggregate';
|
|
1368
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
1369
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1370
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1371
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1372
|
+
uid?: Maybe<Scalars['String']['output']>;
|
|
1373
|
+
};
|
|
1374
|
+
|
|
1375
|
+
export type OffchainRevocationMinOrderByAggregateInput = {
|
|
1376
|
+
from?: InputMaybe<SortOrder>;
|
|
1377
|
+
id?: InputMaybe<SortOrder>;
|
|
1378
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1379
|
+
txid?: InputMaybe<SortOrder>;
|
|
1380
|
+
uid?: InputMaybe<SortOrder>;
|
|
1381
|
+
};
|
|
1382
|
+
|
|
1383
|
+
export type OffchainRevocationOrderByWithAggregationInput = {
|
|
1384
|
+
_avg?: InputMaybe<OffchainRevocationAvgOrderByAggregateInput>;
|
|
1385
|
+
_count?: InputMaybe<OffchainRevocationCountOrderByAggregateInput>;
|
|
1386
|
+
_max?: InputMaybe<OffchainRevocationMaxOrderByAggregateInput>;
|
|
1387
|
+
_min?: InputMaybe<OffchainRevocationMinOrderByAggregateInput>;
|
|
1388
|
+
_sum?: InputMaybe<OffchainRevocationSumOrderByAggregateInput>;
|
|
1389
|
+
from?: InputMaybe<SortOrder>;
|
|
1390
|
+
id?: InputMaybe<SortOrder>;
|
|
1391
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1392
|
+
txid?: InputMaybe<SortOrder>;
|
|
1393
|
+
uid?: InputMaybe<SortOrder>;
|
|
1394
|
+
};
|
|
1395
|
+
|
|
1396
|
+
export type OffchainRevocationOrderByWithRelationInput = {
|
|
1397
|
+
from?: InputMaybe<SortOrder>;
|
|
1398
|
+
id?: InputMaybe<SortOrder>;
|
|
1399
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1400
|
+
txid?: InputMaybe<SortOrder>;
|
|
1401
|
+
uid?: InputMaybe<SortOrder>;
|
|
1402
|
+
};
|
|
1403
|
+
|
|
1404
|
+
export enum OffchainRevocationScalarFieldEnum {
|
|
1405
|
+
From = 'from',
|
|
1406
|
+
Id = 'id',
|
|
1407
|
+
Timestamp = 'timestamp',
|
|
1408
|
+
Txid = 'txid',
|
|
1409
|
+
Uid = 'uid'
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
export type OffchainRevocationScalarWhereWithAggregatesInput = {
|
|
1413
|
+
AND?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1414
|
+
NOT?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1415
|
+
OR?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1416
|
+
from?: InputMaybe<StringWithAggregatesFilter>;
|
|
1417
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
1418
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
1419
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
1420
|
+
uid?: InputMaybe<StringWithAggregatesFilter>;
|
|
1421
|
+
};
|
|
1422
|
+
|
|
1423
|
+
export type OffchainRevocationSumAggregate = {
|
|
1424
|
+
__typename?: 'OffchainRevocationSumAggregate';
|
|
1425
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1426
|
+
};
|
|
1427
|
+
|
|
1428
|
+
export type OffchainRevocationSumOrderByAggregateInput = {
|
|
1429
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1430
|
+
};
|
|
1431
|
+
|
|
1432
|
+
export type OffchainRevocationUpdateInput = {
|
|
1433
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1434
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1435
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1436
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1437
|
+
uid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1438
|
+
};
|
|
1439
|
+
|
|
1440
|
+
export type OffchainRevocationUpdateManyMutationInput = {
|
|
1441
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1442
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1443
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1444
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1445
|
+
uid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1446
|
+
};
|
|
1447
|
+
|
|
1448
|
+
export type OffchainRevocationWhereInput = {
|
|
1449
|
+
AND?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1450
|
+
NOT?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1451
|
+
OR?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1452
|
+
from?: InputMaybe<StringFilter>;
|
|
1453
|
+
id?: InputMaybe<StringFilter>;
|
|
1454
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
1455
|
+
txid?: InputMaybe<StringFilter>;
|
|
1456
|
+
uid?: InputMaybe<StringFilter>;
|
|
1457
|
+
};
|
|
1458
|
+
|
|
1459
|
+
export type OffchainRevocationWhereUniqueInput = {
|
|
1460
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1461
|
+
};
|
|
1462
|
+
|
|
1463
|
+
/** Representation of a transaction owner. */
|
|
1464
|
+
export type Owner = {
|
|
1465
|
+
__typename?: 'Owner';
|
|
1466
|
+
/** The owner's wallet address. */
|
|
1467
|
+
address: Scalars['String']['output'];
|
|
1468
|
+
/** The owner's public key as a base64url encoded string. */
|
|
1469
|
+
key: Scalars['String']['output'];
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
/** Paginated page info using the GraphQL cursor spec. */
|
|
1473
|
+
export type PageInfo = {
|
|
1474
|
+
__typename?: 'PageInfo';
|
|
1475
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
1476
|
+
};
|
|
1477
|
+
|
|
1478
|
+
/**
|
|
1479
|
+
* The parent transaction for bundled transactions,
|
|
1480
|
+
* see: https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-102.md.
|
|
1481
|
+
*/
|
|
1482
|
+
export type Parent = {
|
|
1483
|
+
__typename?: 'Parent';
|
|
1484
|
+
id: Scalars['ID']['output'];
|
|
1485
|
+
};
|
|
1486
|
+
|
|
1487
|
+
export type Query = {
|
|
1488
|
+
__typename?: 'Query';
|
|
1489
|
+
aggregateAttestation: AggregateAttestation;
|
|
1490
|
+
aggregateEnsName: AggregateEnsName;
|
|
1491
|
+
aggregateOffchainRevocation: AggregateOffchainRevocation;
|
|
1492
|
+
aggregateSchema: AggregateSchema;
|
|
1493
|
+
aggregateSchemaName: AggregateSchemaName;
|
|
1494
|
+
aggregateServiceStat: AggregateServiceStat;
|
|
1495
|
+
aggregateTimestamp: AggregateTimestamp;
|
|
1496
|
+
attestation?: Maybe<Attestation>;
|
|
1497
|
+
attestations: Array<Attestation>;
|
|
1498
|
+
block?: Maybe<Block>;
|
|
1499
|
+
blocks: BlockConnection;
|
|
1500
|
+
ensName?: Maybe<EnsName>;
|
|
1501
|
+
ensNames: Array<EnsName>;
|
|
1502
|
+
findFirstAttestation?: Maybe<Attestation>;
|
|
1503
|
+
findFirstAttestationOrThrow?: Maybe<Attestation>;
|
|
1504
|
+
findFirstEnsName?: Maybe<EnsName>;
|
|
1505
|
+
findFirstEnsNameOrThrow?: Maybe<EnsName>;
|
|
1506
|
+
findFirstOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
1507
|
+
findFirstOffchainRevocationOrThrow?: Maybe<OffchainRevocation>;
|
|
1508
|
+
findFirstSchema?: Maybe<Schema>;
|
|
1509
|
+
findFirstSchemaName?: Maybe<SchemaName>;
|
|
1510
|
+
findFirstSchemaNameOrThrow?: Maybe<SchemaName>;
|
|
1511
|
+
findFirstSchemaOrThrow?: Maybe<Schema>;
|
|
1512
|
+
findFirstServiceStat?: Maybe<ServiceStat>;
|
|
1513
|
+
findFirstServiceStatOrThrow?: Maybe<ServiceStat>;
|
|
1514
|
+
findFirstTimestamp?: Maybe<Timestamp>;
|
|
1515
|
+
findFirstTimestampOrThrow?: Maybe<Timestamp>;
|
|
1516
|
+
getAttestation?: Maybe<Attestation>;
|
|
1517
|
+
getEnsName?: Maybe<EnsName>;
|
|
1518
|
+
getOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
1519
|
+
getSchema?: Maybe<Schema>;
|
|
1520
|
+
getSchemaName?: Maybe<SchemaName>;
|
|
1521
|
+
getServiceStat?: Maybe<ServiceStat>;
|
|
1522
|
+
getTimestamp?: Maybe<Timestamp>;
|
|
1523
|
+
groupByAttestation: Array<AttestationGroupBy>;
|
|
1524
|
+
groupByEnsName: Array<EnsNameGroupBy>;
|
|
1525
|
+
groupByOffchainRevocation: Array<OffchainRevocationGroupBy>;
|
|
1526
|
+
groupBySchema: Array<SchemaGroupBy>;
|
|
1527
|
+
groupBySchemaName: Array<SchemaNameGroupBy>;
|
|
1528
|
+
groupByServiceStat: Array<ServiceStatGroupBy>;
|
|
1529
|
+
groupByTimestamp: Array<TimestampGroupBy>;
|
|
1530
|
+
offchainRevocation?: Maybe<OffchainRevocation>;
|
|
1531
|
+
offchainRevocations: Array<OffchainRevocation>;
|
|
1532
|
+
schema?: Maybe<Schema>;
|
|
1533
|
+
schemaName?: Maybe<SchemaName>;
|
|
1534
|
+
schemaNames: Array<SchemaName>;
|
|
1535
|
+
schemata: Array<Schema>;
|
|
1536
|
+
serviceStat?: Maybe<ServiceStat>;
|
|
1537
|
+
serviceStats: Array<ServiceStat>;
|
|
1538
|
+
timestamp?: Maybe<Timestamp>;
|
|
1539
|
+
timestamps: Array<Timestamp>;
|
|
1540
|
+
/** Get a transaction by its id */
|
|
1541
|
+
transaction?: Maybe<Transaction>;
|
|
1542
|
+
/** Get a paginated set of matching transactions using filters. */
|
|
1543
|
+
transactions: TransactionConnection;
|
|
1544
|
+
};
|
|
1545
|
+
|
|
1546
|
+
|
|
1547
|
+
export type QueryAggregateAttestationArgs = {
|
|
1548
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1549
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1550
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1551
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1552
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1553
|
+
};
|
|
1554
|
+
|
|
1555
|
+
|
|
1556
|
+
export type QueryAggregateEnsNameArgs = {
|
|
1557
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1558
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1559
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1560
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1561
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1562
|
+
};
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
export type QueryAggregateOffchainRevocationArgs = {
|
|
1566
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1567
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1568
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1569
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1570
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1571
|
+
};
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
export type QueryAggregateSchemaArgs = {
|
|
1575
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1576
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1577
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1578
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1579
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1580
|
+
};
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
export type QueryAggregateSchemaNameArgs = {
|
|
1584
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1585
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1586
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1587
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1588
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1589
|
+
};
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
export type QueryAggregateServiceStatArgs = {
|
|
1593
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1594
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1595
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1596
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1597
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1598
|
+
};
|
|
1599
|
+
|
|
1600
|
+
|
|
1601
|
+
export type QueryAggregateTimestampArgs = {
|
|
1602
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1603
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1604
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1605
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1606
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1607
|
+
};
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
export type QueryAttestationArgs = {
|
|
1611
|
+
where: AttestationWhereUniqueInput;
|
|
1612
|
+
};
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
export type QueryAttestationsArgs = {
|
|
1616
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1617
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1618
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1619
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1620
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1621
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1622
|
+
};
|
|
1623
|
+
|
|
1624
|
+
|
|
1625
|
+
export type QueryBlockArgs = {
|
|
1626
|
+
id: Scalars['String']['input'];
|
|
1627
|
+
};
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
export type QueryBlocksArgs = {
|
|
1631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1633
|
+
height?: InputMaybe<BlockFilter>;
|
|
1634
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1635
|
+
sort?: InputMaybe<SortOrder>;
|
|
1636
|
+
};
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
export type QueryEnsNameArgs = {
|
|
1640
|
+
where: EnsNameWhereUniqueInput;
|
|
1641
|
+
};
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
export type QueryEnsNamesArgs = {
|
|
1645
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1646
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1647
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1648
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1649
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1650
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1651
|
+
};
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
export type QueryFindFirstAttestationArgs = {
|
|
1655
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1656
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1657
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1658
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1659
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1660
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1661
|
+
};
|
|
1662
|
+
|
|
1663
|
+
|
|
1664
|
+
export type QueryFindFirstAttestationOrThrowArgs = {
|
|
1665
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1666
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1667
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1668
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1669
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1670
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1671
|
+
};
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
export type QueryFindFirstEnsNameArgs = {
|
|
1675
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1676
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1677
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1678
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1679
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1680
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1681
|
+
};
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
export type QueryFindFirstEnsNameOrThrowArgs = {
|
|
1685
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1686
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1687
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1688
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1689
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1690
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1691
|
+
};
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
export type QueryFindFirstOffchainRevocationArgs = {
|
|
1695
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1696
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1697
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1698
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1699
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1700
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1701
|
+
};
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
export type QueryFindFirstOffchainRevocationOrThrowArgs = {
|
|
1705
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1706
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1707
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1708
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1709
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1710
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1711
|
+
};
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
export type QueryFindFirstSchemaArgs = {
|
|
1715
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1716
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1717
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1718
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1719
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1720
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1721
|
+
};
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
export type QueryFindFirstSchemaNameArgs = {
|
|
1725
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1726
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1727
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1728
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1729
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1730
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1731
|
+
};
|
|
1732
|
+
|
|
1733
|
+
|
|
1734
|
+
export type QueryFindFirstSchemaNameOrThrowArgs = {
|
|
1735
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1736
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1737
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1738
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1739
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1740
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1741
|
+
};
|
|
1742
|
+
|
|
1743
|
+
|
|
1744
|
+
export type QueryFindFirstSchemaOrThrowArgs = {
|
|
1745
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1746
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1747
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1748
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1749
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1750
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1751
|
+
};
|
|
1752
|
+
|
|
1753
|
+
|
|
1754
|
+
export type QueryFindFirstServiceStatArgs = {
|
|
1755
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1756
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1757
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1758
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1759
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1760
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1761
|
+
};
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
export type QueryFindFirstServiceStatOrThrowArgs = {
|
|
1765
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1766
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1767
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1768
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1769
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1770
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1771
|
+
};
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
export type QueryFindFirstTimestampArgs = {
|
|
1775
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1776
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1777
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1778
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1779
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1780
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1781
|
+
};
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
export type QueryFindFirstTimestampOrThrowArgs = {
|
|
1785
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1786
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1787
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1788
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1789
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1790
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1791
|
+
};
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
export type QueryGetAttestationArgs = {
|
|
1795
|
+
where: AttestationWhereUniqueInput;
|
|
1796
|
+
};
|
|
1797
|
+
|
|
1798
|
+
|
|
1799
|
+
export type QueryGetEnsNameArgs = {
|
|
1800
|
+
where: EnsNameWhereUniqueInput;
|
|
1801
|
+
};
|
|
1802
|
+
|
|
1803
|
+
|
|
1804
|
+
export type QueryGetOffchainRevocationArgs = {
|
|
1805
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1806
|
+
};
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
export type QueryGetSchemaArgs = {
|
|
1810
|
+
where: SchemaWhereUniqueInput;
|
|
1811
|
+
};
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
export type QueryGetSchemaNameArgs = {
|
|
1815
|
+
where: SchemaNameWhereUniqueInput;
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
export type QueryGetServiceStatArgs = {
|
|
1820
|
+
where: ServiceStatWhereUniqueInput;
|
|
1821
|
+
};
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
export type QueryGetTimestampArgs = {
|
|
1825
|
+
where: TimestampWhereUniqueInput;
|
|
1826
|
+
};
|
|
1827
|
+
|
|
1828
|
+
|
|
1829
|
+
export type QueryGroupByAttestationArgs = {
|
|
1830
|
+
by: Array<AttestationScalarFieldEnum>;
|
|
1831
|
+
having?: InputMaybe<AttestationScalarWhereWithAggregatesInput>;
|
|
1832
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithAggregationInput>>;
|
|
1833
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1834
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1835
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1836
|
+
};
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
export type QueryGroupByEnsNameArgs = {
|
|
1840
|
+
by: Array<EnsNameScalarFieldEnum>;
|
|
1841
|
+
having?: InputMaybe<EnsNameScalarWhereWithAggregatesInput>;
|
|
1842
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithAggregationInput>>;
|
|
1843
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1844
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1845
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1846
|
+
};
|
|
1847
|
+
|
|
1848
|
+
|
|
1849
|
+
export type QueryGroupByOffchainRevocationArgs = {
|
|
1850
|
+
by: Array<OffchainRevocationScalarFieldEnum>;
|
|
1851
|
+
having?: InputMaybe<OffchainRevocationScalarWhereWithAggregatesInput>;
|
|
1852
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithAggregationInput>>;
|
|
1853
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1854
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1855
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1856
|
+
};
|
|
1857
|
+
|
|
1858
|
+
|
|
1859
|
+
export type QueryGroupBySchemaArgs = {
|
|
1860
|
+
by: Array<SchemaScalarFieldEnum>;
|
|
1861
|
+
having?: InputMaybe<SchemaScalarWhereWithAggregatesInput>;
|
|
1862
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithAggregationInput>>;
|
|
1863
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1864
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1865
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1866
|
+
};
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
export type QueryGroupBySchemaNameArgs = {
|
|
1870
|
+
by: Array<SchemaNameScalarFieldEnum>;
|
|
1871
|
+
having?: InputMaybe<SchemaNameScalarWhereWithAggregatesInput>;
|
|
1872
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithAggregationInput>>;
|
|
1873
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1874
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1875
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1876
|
+
};
|
|
1877
|
+
|
|
1878
|
+
|
|
1879
|
+
export type QueryGroupByServiceStatArgs = {
|
|
1880
|
+
by: Array<ServiceStatScalarFieldEnum>;
|
|
1881
|
+
having?: InputMaybe<ServiceStatScalarWhereWithAggregatesInput>;
|
|
1882
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithAggregationInput>>;
|
|
1883
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1884
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1885
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1886
|
+
};
|
|
1887
|
+
|
|
1888
|
+
|
|
1889
|
+
export type QueryGroupByTimestampArgs = {
|
|
1890
|
+
by: Array<TimestampScalarFieldEnum>;
|
|
1891
|
+
having?: InputMaybe<TimestampScalarWhereWithAggregatesInput>;
|
|
1892
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithAggregationInput>>;
|
|
1893
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1894
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1895
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1896
|
+
};
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
export type QueryOffchainRevocationArgs = {
|
|
1900
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1901
|
+
};
|
|
1902
|
+
|
|
1903
|
+
|
|
1904
|
+
export type QueryOffchainRevocationsArgs = {
|
|
1905
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1906
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1907
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1908
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1909
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1910
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1911
|
+
};
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
export type QuerySchemaArgs = {
|
|
1915
|
+
where: SchemaWhereUniqueInput;
|
|
1916
|
+
};
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
export type QuerySchemaNameArgs = {
|
|
1920
|
+
where: SchemaNameWhereUniqueInput;
|
|
1921
|
+
};
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
export type QuerySchemaNamesArgs = {
|
|
1925
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1926
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1927
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1928
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1929
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1930
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1931
|
+
};
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
export type QuerySchemataArgs = {
|
|
1935
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1936
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1937
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1938
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1939
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1940
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1941
|
+
};
|
|
1942
|
+
|
|
1943
|
+
|
|
1944
|
+
export type QueryServiceStatArgs = {
|
|
1945
|
+
where: ServiceStatWhereUniqueInput;
|
|
1946
|
+
};
|
|
1947
|
+
|
|
1948
|
+
|
|
1949
|
+
export type QueryServiceStatsArgs = {
|
|
1950
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1951
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1952
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1953
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1954
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1955
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1956
|
+
};
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
export type QueryTimestampArgs = {
|
|
1960
|
+
where: TimestampWhereUniqueInput;
|
|
1961
|
+
};
|
|
1962
|
+
|
|
1963
|
+
|
|
1964
|
+
export type QueryTimestampsArgs = {
|
|
1965
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1966
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1967
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1968
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1969
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1970
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1971
|
+
};
|
|
1972
|
+
|
|
1973
|
+
|
|
1974
|
+
export type QueryTransactionArgs = {
|
|
1975
|
+
id: Scalars['ID']['input'];
|
|
1976
|
+
};
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
export type QueryTransactionsArgs = {
|
|
1980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1981
|
+
block?: InputMaybe<BlockFilter>;
|
|
1982
|
+
bundledIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1984
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1985
|
+
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1986
|
+
recipients?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1987
|
+
sort?: InputMaybe<SortOrder>;
|
|
1988
|
+
tags?: InputMaybe<Array<TagFilter>>;
|
|
1989
|
+
};
|
|
1990
|
+
|
|
1991
|
+
export enum QueryMode {
|
|
1992
|
+
Default = 'default',
|
|
1993
|
+
Insensitive = 'insensitive'
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
export type Schema = {
|
|
1997
|
+
__typename?: 'Schema';
|
|
1998
|
+
_count?: Maybe<SchemaCount>;
|
|
1999
|
+
attestations: Array<Attestation>;
|
|
2000
|
+
creator: Scalars['String']['output'];
|
|
2001
|
+
id: Scalars['String']['output'];
|
|
2002
|
+
index: Scalars['String']['output'];
|
|
2003
|
+
resolver: Scalars['String']['output'];
|
|
2004
|
+
revocable: Scalars['Boolean']['output'];
|
|
2005
|
+
schema: Scalars['String']['output'];
|
|
2006
|
+
schemaNames: Array<SchemaName>;
|
|
2007
|
+
time: Scalars['Int']['output'];
|
|
2008
|
+
txid: Scalars['String']['output'];
|
|
2009
|
+
};
|
|
2010
|
+
|
|
2011
|
+
|
|
2012
|
+
export type SchemaAttestationsArgs = {
|
|
2013
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
2014
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
2015
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
2016
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2017
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
2018
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
2019
|
+
};
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
export type SchemaSchemaNamesArgs = {
|
|
2023
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
2024
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
2025
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
2026
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2027
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
2028
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
2029
|
+
};
|
|
2030
|
+
|
|
2031
|
+
export type SchemaAvgAggregate = {
|
|
2032
|
+
__typename?: 'SchemaAvgAggregate';
|
|
2033
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
2034
|
+
};
|
|
2035
|
+
|
|
2036
|
+
export type SchemaAvgOrderByAggregateInput = {
|
|
2037
|
+
time?: InputMaybe<SortOrder>;
|
|
2038
|
+
};
|
|
2039
|
+
|
|
2040
|
+
export type SchemaCount = {
|
|
2041
|
+
__typename?: 'SchemaCount';
|
|
2042
|
+
attestations: Scalars['Int']['output'];
|
|
2043
|
+
schemaNames: Scalars['Int']['output'];
|
|
2044
|
+
};
|
|
2045
|
+
|
|
2046
|
+
export type SchemaCountAggregate = {
|
|
2047
|
+
__typename?: 'SchemaCountAggregate';
|
|
2048
|
+
_all: Scalars['Int']['output'];
|
|
2049
|
+
creator: Scalars['Int']['output'];
|
|
2050
|
+
id: Scalars['Int']['output'];
|
|
2051
|
+
index: Scalars['Int']['output'];
|
|
2052
|
+
resolver: Scalars['Int']['output'];
|
|
2053
|
+
revocable: Scalars['Int']['output'];
|
|
2054
|
+
schema: Scalars['Int']['output'];
|
|
2055
|
+
time: Scalars['Int']['output'];
|
|
2056
|
+
txid: Scalars['Int']['output'];
|
|
2057
|
+
};
|
|
2058
|
+
|
|
2059
|
+
export type SchemaCountOrderByAggregateInput = {
|
|
2060
|
+
creator?: InputMaybe<SortOrder>;
|
|
2061
|
+
id?: InputMaybe<SortOrder>;
|
|
2062
|
+
index?: InputMaybe<SortOrder>;
|
|
2063
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2064
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2065
|
+
schema?: InputMaybe<SortOrder>;
|
|
2066
|
+
time?: InputMaybe<SortOrder>;
|
|
2067
|
+
txid?: InputMaybe<SortOrder>;
|
|
2068
|
+
};
|
|
2069
|
+
|
|
2070
|
+
export type SchemaCreateInput = {
|
|
2071
|
+
attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;
|
|
2072
|
+
creator: Scalars['String']['input'];
|
|
2073
|
+
id: Scalars['String']['input'];
|
|
2074
|
+
index: Scalars['String']['input'];
|
|
2075
|
+
resolver: Scalars['String']['input'];
|
|
2076
|
+
revocable: Scalars['Boolean']['input'];
|
|
2077
|
+
schema: Scalars['String']['input'];
|
|
2078
|
+
schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;
|
|
2079
|
+
time: Scalars['Int']['input'];
|
|
2080
|
+
txid: Scalars['String']['input'];
|
|
2081
|
+
};
|
|
2082
|
+
|
|
2083
|
+
export type SchemaCreateManyInput = {
|
|
2084
|
+
creator: Scalars['String']['input'];
|
|
2085
|
+
id: Scalars['String']['input'];
|
|
2086
|
+
index: Scalars['String']['input'];
|
|
2087
|
+
resolver: Scalars['String']['input'];
|
|
2088
|
+
revocable: Scalars['Boolean']['input'];
|
|
2089
|
+
schema: Scalars['String']['input'];
|
|
2090
|
+
time: Scalars['Int']['input'];
|
|
2091
|
+
txid: Scalars['String']['input'];
|
|
2092
|
+
};
|
|
2093
|
+
|
|
2094
|
+
export type SchemaCreateNestedOneWithoutAttestationsInput = {
|
|
2095
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2096
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;
|
|
2097
|
+
create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;
|
|
2098
|
+
};
|
|
2099
|
+
|
|
2100
|
+
export type SchemaCreateNestedOneWithoutSchemaNamesInput = {
|
|
2101
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2102
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;
|
|
2103
|
+
create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;
|
|
2104
|
+
};
|
|
2105
|
+
|
|
2106
|
+
export type SchemaCreateOrConnectWithoutAttestationsInput = {
|
|
2107
|
+
create: SchemaCreateWithoutAttestationsInput;
|
|
2108
|
+
where: SchemaWhereUniqueInput;
|
|
2109
|
+
};
|
|
2110
|
+
|
|
2111
|
+
export type SchemaCreateOrConnectWithoutSchemaNamesInput = {
|
|
2112
|
+
create: SchemaCreateWithoutSchemaNamesInput;
|
|
2113
|
+
where: SchemaWhereUniqueInput;
|
|
2114
|
+
};
|
|
2115
|
+
|
|
2116
|
+
export type SchemaCreateWithoutAttestationsInput = {
|
|
2117
|
+
creator: Scalars['String']['input'];
|
|
2118
|
+
id: Scalars['String']['input'];
|
|
2119
|
+
index: Scalars['String']['input'];
|
|
2120
|
+
resolver: Scalars['String']['input'];
|
|
2121
|
+
revocable: Scalars['Boolean']['input'];
|
|
2122
|
+
schema: Scalars['String']['input'];
|
|
2123
|
+
schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;
|
|
2124
|
+
time: Scalars['Int']['input'];
|
|
2125
|
+
txid: Scalars['String']['input'];
|
|
2126
|
+
};
|
|
2127
|
+
|
|
2128
|
+
export type SchemaCreateWithoutSchemaNamesInput = {
|
|
2129
|
+
attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;
|
|
2130
|
+
creator: Scalars['String']['input'];
|
|
2131
|
+
id: Scalars['String']['input'];
|
|
2132
|
+
index: Scalars['String']['input'];
|
|
2133
|
+
resolver: Scalars['String']['input'];
|
|
2134
|
+
revocable: Scalars['Boolean']['input'];
|
|
2135
|
+
schema: Scalars['String']['input'];
|
|
2136
|
+
time: Scalars['Int']['input'];
|
|
2137
|
+
txid: Scalars['String']['input'];
|
|
2138
|
+
};
|
|
2139
|
+
|
|
2140
|
+
export type SchemaGroupBy = {
|
|
2141
|
+
__typename?: 'SchemaGroupBy';
|
|
2142
|
+
_avg?: Maybe<SchemaAvgAggregate>;
|
|
2143
|
+
_count?: Maybe<SchemaCountAggregate>;
|
|
2144
|
+
_max?: Maybe<SchemaMaxAggregate>;
|
|
2145
|
+
_min?: Maybe<SchemaMinAggregate>;
|
|
2146
|
+
_sum?: Maybe<SchemaSumAggregate>;
|
|
2147
|
+
creator: Scalars['String']['output'];
|
|
2148
|
+
id: Scalars['String']['output'];
|
|
2149
|
+
index: Scalars['String']['output'];
|
|
2150
|
+
resolver: Scalars['String']['output'];
|
|
2151
|
+
revocable: Scalars['Boolean']['output'];
|
|
2152
|
+
schema: Scalars['String']['output'];
|
|
2153
|
+
time: Scalars['Int']['output'];
|
|
2154
|
+
txid: Scalars['String']['output'];
|
|
2155
|
+
};
|
|
2156
|
+
|
|
2157
|
+
export type SchemaMaxAggregate = {
|
|
2158
|
+
__typename?: 'SchemaMaxAggregate';
|
|
2159
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
2160
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2161
|
+
index?: Maybe<Scalars['String']['output']>;
|
|
2162
|
+
resolver?: Maybe<Scalars['String']['output']>;
|
|
2163
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
2164
|
+
schema?: Maybe<Scalars['String']['output']>;
|
|
2165
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2166
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2167
|
+
};
|
|
2168
|
+
|
|
2169
|
+
export type SchemaMaxOrderByAggregateInput = {
|
|
2170
|
+
creator?: InputMaybe<SortOrder>;
|
|
2171
|
+
id?: InputMaybe<SortOrder>;
|
|
2172
|
+
index?: InputMaybe<SortOrder>;
|
|
2173
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2174
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2175
|
+
schema?: InputMaybe<SortOrder>;
|
|
2176
|
+
time?: InputMaybe<SortOrder>;
|
|
2177
|
+
txid?: InputMaybe<SortOrder>;
|
|
2178
|
+
};
|
|
2179
|
+
|
|
2180
|
+
export type SchemaMinAggregate = {
|
|
2181
|
+
__typename?: 'SchemaMinAggregate';
|
|
2182
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
2183
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2184
|
+
index?: Maybe<Scalars['String']['output']>;
|
|
2185
|
+
resolver?: Maybe<Scalars['String']['output']>;
|
|
2186
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
2187
|
+
schema?: Maybe<Scalars['String']['output']>;
|
|
2188
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2189
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2190
|
+
};
|
|
2191
|
+
|
|
2192
|
+
export type SchemaMinOrderByAggregateInput = {
|
|
2193
|
+
creator?: InputMaybe<SortOrder>;
|
|
2194
|
+
id?: InputMaybe<SortOrder>;
|
|
2195
|
+
index?: InputMaybe<SortOrder>;
|
|
2196
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2197
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2198
|
+
schema?: InputMaybe<SortOrder>;
|
|
2199
|
+
time?: InputMaybe<SortOrder>;
|
|
2200
|
+
txid?: InputMaybe<SortOrder>;
|
|
2201
|
+
};
|
|
2202
|
+
|
|
2203
|
+
export type SchemaName = {
|
|
2204
|
+
__typename?: 'SchemaName';
|
|
2205
|
+
attesterAddress: Scalars['String']['output'];
|
|
2206
|
+
id: Scalars['String']['output'];
|
|
2207
|
+
isCreator: Scalars['Boolean']['output'];
|
|
2208
|
+
name: Scalars['String']['output'];
|
|
2209
|
+
schema: Schema;
|
|
2210
|
+
schemaId: Scalars['String']['output'];
|
|
2211
|
+
time: Scalars['Int']['output'];
|
|
2212
|
+
};
|
|
2213
|
+
|
|
2214
|
+
export type SchemaNameAvgAggregate = {
|
|
2215
|
+
__typename?: 'SchemaNameAvgAggregate';
|
|
2216
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
2217
|
+
};
|
|
2218
|
+
|
|
2219
|
+
export type SchemaNameAvgOrderByAggregateInput = {
|
|
2220
|
+
time?: InputMaybe<SortOrder>;
|
|
2221
|
+
};
|
|
2222
|
+
|
|
2223
|
+
export type SchemaNameCountAggregate = {
|
|
2224
|
+
__typename?: 'SchemaNameCountAggregate';
|
|
2225
|
+
_all: Scalars['Int']['output'];
|
|
2226
|
+
attesterAddress: Scalars['Int']['output'];
|
|
2227
|
+
id: Scalars['Int']['output'];
|
|
2228
|
+
isCreator: Scalars['Int']['output'];
|
|
2229
|
+
name: Scalars['Int']['output'];
|
|
2230
|
+
schemaId: Scalars['Int']['output'];
|
|
2231
|
+
time: Scalars['Int']['output'];
|
|
2232
|
+
};
|
|
2233
|
+
|
|
2234
|
+
export type SchemaNameCountOrderByAggregateInput = {
|
|
2235
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
2236
|
+
id?: InputMaybe<SortOrder>;
|
|
2237
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
2238
|
+
name?: InputMaybe<SortOrder>;
|
|
2239
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
2240
|
+
time?: InputMaybe<SortOrder>;
|
|
2241
|
+
};
|
|
2242
|
+
|
|
2243
|
+
export type SchemaNameCreateInput = {
|
|
2244
|
+
attesterAddress: Scalars['String']['input'];
|
|
2245
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2246
|
+
isCreator: Scalars['Boolean']['input'];
|
|
2247
|
+
name: Scalars['String']['input'];
|
|
2248
|
+
schema: SchemaCreateNestedOneWithoutSchemaNamesInput;
|
|
2249
|
+
time: Scalars['Int']['input'];
|
|
2250
|
+
};
|
|
2251
|
+
|
|
2252
|
+
export type SchemaNameCreateManyInput = {
|
|
2253
|
+
attesterAddress: Scalars['String']['input'];
|
|
2254
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2255
|
+
isCreator: Scalars['Boolean']['input'];
|
|
2256
|
+
name: Scalars['String']['input'];
|
|
2257
|
+
schemaId: Scalars['String']['input'];
|
|
2258
|
+
time: Scalars['Int']['input'];
|
|
2259
|
+
};
|
|
2260
|
+
|
|
2261
|
+
export type SchemaNameCreateManySchemaInput = {
|
|
2262
|
+
attesterAddress: Scalars['String']['input'];
|
|
2263
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2264
|
+
isCreator: Scalars['Boolean']['input'];
|
|
2265
|
+
name: Scalars['String']['input'];
|
|
2266
|
+
time: Scalars['Int']['input'];
|
|
2267
|
+
};
|
|
2268
|
+
|
|
2269
|
+
export type SchemaNameCreateManySchemaInputEnvelope = {
|
|
2270
|
+
data: Array<SchemaNameCreateManySchemaInput>;
|
|
2271
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2272
|
+
};
|
|
2273
|
+
|
|
2274
|
+
export type SchemaNameCreateNestedManyWithoutSchemaInput = {
|
|
2275
|
+
connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
2276
|
+
connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;
|
|
2277
|
+
create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;
|
|
2278
|
+
createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;
|
|
2279
|
+
};
|
|
2280
|
+
|
|
2281
|
+
export type SchemaNameCreateOrConnectWithoutSchemaInput = {
|
|
2282
|
+
create: SchemaNameCreateWithoutSchemaInput;
|
|
2283
|
+
where: SchemaNameWhereUniqueInput;
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
export type SchemaNameCreateWithoutSchemaInput = {
|
|
2287
|
+
attesterAddress: Scalars['String']['input'];
|
|
2288
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2289
|
+
isCreator: Scalars['Boolean']['input'];
|
|
2290
|
+
name: Scalars['String']['input'];
|
|
2291
|
+
time: Scalars['Int']['input'];
|
|
2292
|
+
};
|
|
2293
|
+
|
|
2294
|
+
export type SchemaNameGroupBy = {
|
|
2295
|
+
__typename?: 'SchemaNameGroupBy';
|
|
2296
|
+
_avg?: Maybe<SchemaNameAvgAggregate>;
|
|
2297
|
+
_count?: Maybe<SchemaNameCountAggregate>;
|
|
2298
|
+
_max?: Maybe<SchemaNameMaxAggregate>;
|
|
2299
|
+
_min?: Maybe<SchemaNameMinAggregate>;
|
|
2300
|
+
_sum?: Maybe<SchemaNameSumAggregate>;
|
|
2301
|
+
attesterAddress: Scalars['String']['output'];
|
|
2302
|
+
id: Scalars['String']['output'];
|
|
2303
|
+
isCreator: Scalars['Boolean']['output'];
|
|
2304
|
+
name: Scalars['String']['output'];
|
|
2305
|
+
schemaId: Scalars['String']['output'];
|
|
2306
|
+
time: Scalars['Int']['output'];
|
|
2307
|
+
};
|
|
2308
|
+
|
|
2309
|
+
export type SchemaNameListRelationFilter = {
|
|
2310
|
+
every?: InputMaybe<SchemaNameWhereInput>;
|
|
2311
|
+
none?: InputMaybe<SchemaNameWhereInput>;
|
|
2312
|
+
some?: InputMaybe<SchemaNameWhereInput>;
|
|
2313
|
+
};
|
|
2314
|
+
|
|
2315
|
+
export type SchemaNameMaxAggregate = {
|
|
2316
|
+
__typename?: 'SchemaNameMaxAggregate';
|
|
2317
|
+
attesterAddress?: Maybe<Scalars['String']['output']>;
|
|
2318
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2319
|
+
isCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
2320
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2321
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
2322
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2323
|
+
};
|
|
2324
|
+
|
|
2325
|
+
export type SchemaNameMaxOrderByAggregateInput = {
|
|
2326
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
2327
|
+
id?: InputMaybe<SortOrder>;
|
|
2328
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
2329
|
+
name?: InputMaybe<SortOrder>;
|
|
2330
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
2331
|
+
time?: InputMaybe<SortOrder>;
|
|
2332
|
+
};
|
|
2333
|
+
|
|
2334
|
+
export type SchemaNameMinAggregate = {
|
|
2335
|
+
__typename?: 'SchemaNameMinAggregate';
|
|
2336
|
+
attesterAddress?: Maybe<Scalars['String']['output']>;
|
|
2337
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2338
|
+
isCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
2339
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2340
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
2341
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2342
|
+
};
|
|
2343
|
+
|
|
2344
|
+
export type SchemaNameMinOrderByAggregateInput = {
|
|
2345
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
2346
|
+
id?: InputMaybe<SortOrder>;
|
|
2347
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
2348
|
+
name?: InputMaybe<SortOrder>;
|
|
2349
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
2350
|
+
time?: InputMaybe<SortOrder>;
|
|
2351
|
+
};
|
|
2352
|
+
|
|
2353
|
+
export type SchemaNameOrderByRelationAggregateInput = {
|
|
2354
|
+
_count?: InputMaybe<SortOrder>;
|
|
2355
|
+
};
|
|
2356
|
+
|
|
2357
|
+
export type SchemaNameOrderByWithAggregationInput = {
|
|
2358
|
+
_avg?: InputMaybe<SchemaNameAvgOrderByAggregateInput>;
|
|
2359
|
+
_count?: InputMaybe<SchemaNameCountOrderByAggregateInput>;
|
|
2360
|
+
_max?: InputMaybe<SchemaNameMaxOrderByAggregateInput>;
|
|
2361
|
+
_min?: InputMaybe<SchemaNameMinOrderByAggregateInput>;
|
|
2362
|
+
_sum?: InputMaybe<SchemaNameSumOrderByAggregateInput>;
|
|
2363
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
2364
|
+
id?: InputMaybe<SortOrder>;
|
|
2365
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
2366
|
+
name?: InputMaybe<SortOrder>;
|
|
2367
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
2368
|
+
time?: InputMaybe<SortOrder>;
|
|
2369
|
+
};
|
|
2370
|
+
|
|
2371
|
+
export type SchemaNameOrderByWithRelationInput = {
|
|
2372
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
2373
|
+
id?: InputMaybe<SortOrder>;
|
|
2374
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
2375
|
+
name?: InputMaybe<SortOrder>;
|
|
2376
|
+
schema?: InputMaybe<SchemaOrderByWithRelationInput>;
|
|
2377
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
2378
|
+
time?: InputMaybe<SortOrder>;
|
|
2379
|
+
};
|
|
2380
|
+
|
|
2381
|
+
export enum SchemaNameScalarFieldEnum {
|
|
2382
|
+
AttesterAddress = 'attesterAddress',
|
|
2383
|
+
Id = 'id',
|
|
2384
|
+
IsCreator = 'isCreator',
|
|
2385
|
+
Name = 'name',
|
|
2386
|
+
SchemaId = 'schemaId',
|
|
2387
|
+
Time = 'time'
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
export type SchemaNameScalarWhereInput = {
|
|
2391
|
+
AND?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
2392
|
+
NOT?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
2393
|
+
OR?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
2394
|
+
attesterAddress?: InputMaybe<StringFilter>;
|
|
2395
|
+
id?: InputMaybe<StringFilter>;
|
|
2396
|
+
isCreator?: InputMaybe<BoolFilter>;
|
|
2397
|
+
name?: InputMaybe<StringFilter>;
|
|
2398
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
2399
|
+
time?: InputMaybe<IntFilter>;
|
|
2400
|
+
};
|
|
2401
|
+
|
|
2402
|
+
export type SchemaNameScalarWhereWithAggregatesInput = {
|
|
2403
|
+
AND?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
2404
|
+
NOT?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
2405
|
+
OR?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
2406
|
+
attesterAddress?: InputMaybe<StringWithAggregatesFilter>;
|
|
2407
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
2408
|
+
isCreator?: InputMaybe<BoolWithAggregatesFilter>;
|
|
2409
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
2410
|
+
schemaId?: InputMaybe<StringWithAggregatesFilter>;
|
|
2411
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
2412
|
+
};
|
|
2413
|
+
|
|
2414
|
+
export type SchemaNameSumAggregate = {
|
|
2415
|
+
__typename?: 'SchemaNameSumAggregate';
|
|
2416
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2417
|
+
};
|
|
2418
|
+
|
|
2419
|
+
export type SchemaNameSumOrderByAggregateInput = {
|
|
2420
|
+
time?: InputMaybe<SortOrder>;
|
|
2421
|
+
};
|
|
2422
|
+
|
|
2423
|
+
export type SchemaNameUpdateInput = {
|
|
2424
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2425
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2426
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2427
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2428
|
+
schema?: InputMaybe<SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput>;
|
|
2429
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2430
|
+
};
|
|
2431
|
+
|
|
2432
|
+
export type SchemaNameUpdateManyMutationInput = {
|
|
2433
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2434
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2435
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2436
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2437
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2438
|
+
};
|
|
2439
|
+
|
|
2440
|
+
export type SchemaNameUpdateManyWithWhereWithoutSchemaInput = {
|
|
2441
|
+
data: SchemaNameUpdateManyMutationInput;
|
|
2442
|
+
where: SchemaNameScalarWhereInput;
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
export type SchemaNameUpdateManyWithoutSchemaNestedInput = {
|
|
2446
|
+
connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
2447
|
+
connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;
|
|
2448
|
+
create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;
|
|
2449
|
+
createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;
|
|
2450
|
+
delete?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
2451
|
+
deleteMany?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
2452
|
+
disconnect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
2453
|
+
set?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
2454
|
+
update?: InputMaybe<Array<SchemaNameUpdateWithWhereUniqueWithoutSchemaInput>>;
|
|
2455
|
+
updateMany?: InputMaybe<Array<SchemaNameUpdateManyWithWhereWithoutSchemaInput>>;
|
|
2456
|
+
upsert?: InputMaybe<Array<SchemaNameUpsertWithWhereUniqueWithoutSchemaInput>>;
|
|
2457
|
+
};
|
|
2458
|
+
|
|
2459
|
+
export type SchemaNameUpdateWithWhereUniqueWithoutSchemaInput = {
|
|
2460
|
+
data: SchemaNameUpdateWithoutSchemaInput;
|
|
2461
|
+
where: SchemaNameWhereUniqueInput;
|
|
2462
|
+
};
|
|
2463
|
+
|
|
2464
|
+
export type SchemaNameUpdateWithoutSchemaInput = {
|
|
2465
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2466
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2467
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2468
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2469
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2470
|
+
};
|
|
2471
|
+
|
|
2472
|
+
export type SchemaNameUpsertWithWhereUniqueWithoutSchemaInput = {
|
|
2473
|
+
create: SchemaNameCreateWithoutSchemaInput;
|
|
2474
|
+
update: SchemaNameUpdateWithoutSchemaInput;
|
|
2475
|
+
where: SchemaNameWhereUniqueInput;
|
|
2476
|
+
};
|
|
2477
|
+
|
|
2478
|
+
export type SchemaNameWhereInput = {
|
|
2479
|
+
AND?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2480
|
+
NOT?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2481
|
+
OR?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2482
|
+
attesterAddress?: InputMaybe<StringFilter>;
|
|
2483
|
+
id?: InputMaybe<StringFilter>;
|
|
2484
|
+
isCreator?: InputMaybe<BoolFilter>;
|
|
2485
|
+
name?: InputMaybe<StringFilter>;
|
|
2486
|
+
schema?: InputMaybe<SchemaRelationFilter>;
|
|
2487
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
2488
|
+
time?: InputMaybe<IntFilter>;
|
|
2489
|
+
};
|
|
2490
|
+
|
|
2491
|
+
export type SchemaNameWhereUniqueInput = {
|
|
2492
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2493
|
+
};
|
|
2494
|
+
|
|
2495
|
+
export type SchemaOrderByWithAggregationInput = {
|
|
2496
|
+
_avg?: InputMaybe<SchemaAvgOrderByAggregateInput>;
|
|
2497
|
+
_count?: InputMaybe<SchemaCountOrderByAggregateInput>;
|
|
2498
|
+
_max?: InputMaybe<SchemaMaxOrderByAggregateInput>;
|
|
2499
|
+
_min?: InputMaybe<SchemaMinOrderByAggregateInput>;
|
|
2500
|
+
_sum?: InputMaybe<SchemaSumOrderByAggregateInput>;
|
|
2501
|
+
creator?: InputMaybe<SortOrder>;
|
|
2502
|
+
id?: InputMaybe<SortOrder>;
|
|
2503
|
+
index?: InputMaybe<SortOrder>;
|
|
2504
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2505
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2506
|
+
schema?: InputMaybe<SortOrder>;
|
|
2507
|
+
time?: InputMaybe<SortOrder>;
|
|
2508
|
+
txid?: InputMaybe<SortOrder>;
|
|
2509
|
+
};
|
|
2510
|
+
|
|
2511
|
+
export type SchemaOrderByWithRelationInput = {
|
|
2512
|
+
attestations?: InputMaybe<AttestationOrderByRelationAggregateInput>;
|
|
2513
|
+
creator?: InputMaybe<SortOrder>;
|
|
2514
|
+
id?: InputMaybe<SortOrder>;
|
|
2515
|
+
index?: InputMaybe<SortOrder>;
|
|
2516
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2517
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2518
|
+
schema?: InputMaybe<SortOrder>;
|
|
2519
|
+
schemaNames?: InputMaybe<SchemaNameOrderByRelationAggregateInput>;
|
|
2520
|
+
time?: InputMaybe<SortOrder>;
|
|
2521
|
+
txid?: InputMaybe<SortOrder>;
|
|
2522
|
+
};
|
|
2523
|
+
|
|
2524
|
+
export type SchemaRelationFilter = {
|
|
2525
|
+
is?: InputMaybe<SchemaWhereInput>;
|
|
2526
|
+
isNot?: InputMaybe<SchemaWhereInput>;
|
|
2527
|
+
};
|
|
2528
|
+
|
|
2529
|
+
export enum SchemaScalarFieldEnum {
|
|
2530
|
+
Creator = 'creator',
|
|
2531
|
+
Id = 'id',
|
|
2532
|
+
Index = 'index',
|
|
2533
|
+
Resolver = 'resolver',
|
|
2534
|
+
Revocable = 'revocable',
|
|
2535
|
+
Schema = 'schema',
|
|
2536
|
+
Time = 'time',
|
|
2537
|
+
Txid = 'txid'
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
export type SchemaScalarWhereWithAggregatesInput = {
|
|
2541
|
+
AND?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2542
|
+
NOT?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2543
|
+
OR?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2544
|
+
creator?: InputMaybe<StringWithAggregatesFilter>;
|
|
2545
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
2546
|
+
index?: InputMaybe<StringWithAggregatesFilter>;
|
|
2547
|
+
resolver?: InputMaybe<StringWithAggregatesFilter>;
|
|
2548
|
+
revocable?: InputMaybe<BoolWithAggregatesFilter>;
|
|
2549
|
+
schema?: InputMaybe<StringWithAggregatesFilter>;
|
|
2550
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
2551
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
2552
|
+
};
|
|
2553
|
+
|
|
2554
|
+
export type SchemaSumAggregate = {
|
|
2555
|
+
__typename?: 'SchemaSumAggregate';
|
|
2556
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2557
|
+
};
|
|
2558
|
+
|
|
2559
|
+
export type SchemaSumOrderByAggregateInput = {
|
|
2560
|
+
time?: InputMaybe<SortOrder>;
|
|
2561
|
+
};
|
|
2562
|
+
|
|
2563
|
+
export type SchemaUpdateInput = {
|
|
2564
|
+
attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;
|
|
2565
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2566
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2567
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2568
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2569
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2570
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2571
|
+
schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;
|
|
2572
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2573
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2574
|
+
};
|
|
2575
|
+
|
|
2576
|
+
export type SchemaUpdateManyMutationInput = {
|
|
2577
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2578
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2579
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2580
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2581
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2582
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2583
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2584
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2585
|
+
};
|
|
2586
|
+
|
|
2587
|
+
export type SchemaUpdateOneRequiredWithoutAttestationsNestedInput = {
|
|
2588
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2589
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;
|
|
2590
|
+
create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;
|
|
2591
|
+
update?: InputMaybe<SchemaUpdateWithoutAttestationsInput>;
|
|
2592
|
+
upsert?: InputMaybe<SchemaUpsertWithoutAttestationsInput>;
|
|
2593
|
+
};
|
|
2594
|
+
|
|
2595
|
+
export type SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput = {
|
|
2596
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2597
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;
|
|
2598
|
+
create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;
|
|
2599
|
+
update?: InputMaybe<SchemaUpdateWithoutSchemaNamesInput>;
|
|
2600
|
+
upsert?: InputMaybe<SchemaUpsertWithoutSchemaNamesInput>;
|
|
2601
|
+
};
|
|
2602
|
+
|
|
2603
|
+
export type SchemaUpdateWithoutAttestationsInput = {
|
|
2604
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2605
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2606
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2607
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2608
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2609
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2610
|
+
schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;
|
|
2611
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2612
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2613
|
+
};
|
|
2614
|
+
|
|
2615
|
+
export type SchemaUpdateWithoutSchemaNamesInput = {
|
|
2616
|
+
attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;
|
|
2617
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2618
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2619
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2620
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2621
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2622
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2623
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2624
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2625
|
+
};
|
|
2626
|
+
|
|
2627
|
+
export type SchemaUpsertWithoutAttestationsInput = {
|
|
2628
|
+
create: SchemaCreateWithoutAttestationsInput;
|
|
2629
|
+
update: SchemaUpdateWithoutAttestationsInput;
|
|
2630
|
+
};
|
|
2631
|
+
|
|
2632
|
+
export type SchemaUpsertWithoutSchemaNamesInput = {
|
|
2633
|
+
create: SchemaCreateWithoutSchemaNamesInput;
|
|
2634
|
+
update: SchemaUpdateWithoutSchemaNamesInput;
|
|
2635
|
+
};
|
|
2636
|
+
|
|
2637
|
+
export type SchemaWhereInput = {
|
|
2638
|
+
AND?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2639
|
+
NOT?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2640
|
+
OR?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2641
|
+
attestations?: InputMaybe<AttestationListRelationFilter>;
|
|
2642
|
+
creator?: InputMaybe<StringFilter>;
|
|
2643
|
+
id?: InputMaybe<StringFilter>;
|
|
2644
|
+
index?: InputMaybe<StringFilter>;
|
|
2645
|
+
resolver?: InputMaybe<StringFilter>;
|
|
2646
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
2647
|
+
schema?: InputMaybe<StringFilter>;
|
|
2648
|
+
schemaNames?: InputMaybe<SchemaNameListRelationFilter>;
|
|
2649
|
+
time?: InputMaybe<IntFilter>;
|
|
2650
|
+
txid?: InputMaybe<StringFilter>;
|
|
2651
|
+
};
|
|
2652
|
+
|
|
2653
|
+
export type SchemaWhereUniqueInput = {
|
|
2654
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2655
|
+
};
|
|
2656
|
+
|
|
2657
|
+
export type ServiceStat = {
|
|
2658
|
+
__typename?: 'ServiceStat';
|
|
2659
|
+
name: Scalars['String']['output'];
|
|
2660
|
+
value: Scalars['String']['output'];
|
|
2661
|
+
};
|
|
2662
|
+
|
|
2663
|
+
export type ServiceStatCountAggregate = {
|
|
2664
|
+
__typename?: 'ServiceStatCountAggregate';
|
|
2665
|
+
_all: Scalars['Int']['output'];
|
|
2666
|
+
name: Scalars['Int']['output'];
|
|
2667
|
+
value: Scalars['Int']['output'];
|
|
2668
|
+
};
|
|
2669
|
+
|
|
2670
|
+
export type ServiceStatCountOrderByAggregateInput = {
|
|
2671
|
+
name?: InputMaybe<SortOrder>;
|
|
2672
|
+
value?: InputMaybe<SortOrder>;
|
|
2673
|
+
};
|
|
2674
|
+
|
|
2675
|
+
export type ServiceStatCreateInput = {
|
|
2676
|
+
name: Scalars['String']['input'];
|
|
2677
|
+
value: Scalars['String']['input'];
|
|
2678
|
+
};
|
|
2679
|
+
|
|
2680
|
+
export type ServiceStatCreateManyInput = {
|
|
2681
|
+
name: Scalars['String']['input'];
|
|
2682
|
+
value: Scalars['String']['input'];
|
|
2683
|
+
};
|
|
2684
|
+
|
|
2685
|
+
export type ServiceStatGroupBy = {
|
|
2686
|
+
__typename?: 'ServiceStatGroupBy';
|
|
2687
|
+
_count?: Maybe<ServiceStatCountAggregate>;
|
|
2688
|
+
_max?: Maybe<ServiceStatMaxAggregate>;
|
|
2689
|
+
_min?: Maybe<ServiceStatMinAggregate>;
|
|
2690
|
+
name: Scalars['String']['output'];
|
|
2691
|
+
value: Scalars['String']['output'];
|
|
2692
|
+
};
|
|
2693
|
+
|
|
2694
|
+
export type ServiceStatMaxAggregate = {
|
|
2695
|
+
__typename?: 'ServiceStatMaxAggregate';
|
|
2696
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2697
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2698
|
+
};
|
|
2699
|
+
|
|
2700
|
+
export type ServiceStatMaxOrderByAggregateInput = {
|
|
2701
|
+
name?: InputMaybe<SortOrder>;
|
|
2702
|
+
value?: InputMaybe<SortOrder>;
|
|
2703
|
+
};
|
|
2704
|
+
|
|
2705
|
+
export type ServiceStatMinAggregate = {
|
|
2706
|
+
__typename?: 'ServiceStatMinAggregate';
|
|
2707
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2708
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2709
|
+
};
|
|
2710
|
+
|
|
2711
|
+
export type ServiceStatMinOrderByAggregateInput = {
|
|
2712
|
+
name?: InputMaybe<SortOrder>;
|
|
2713
|
+
value?: InputMaybe<SortOrder>;
|
|
2714
|
+
};
|
|
2715
|
+
|
|
2716
|
+
export type ServiceStatOrderByWithAggregationInput = {
|
|
2717
|
+
_count?: InputMaybe<ServiceStatCountOrderByAggregateInput>;
|
|
2718
|
+
_max?: InputMaybe<ServiceStatMaxOrderByAggregateInput>;
|
|
2719
|
+
_min?: InputMaybe<ServiceStatMinOrderByAggregateInput>;
|
|
2720
|
+
name?: InputMaybe<SortOrder>;
|
|
2721
|
+
value?: InputMaybe<SortOrder>;
|
|
2722
|
+
};
|
|
2723
|
+
|
|
2724
|
+
export type ServiceStatOrderByWithRelationInput = {
|
|
2725
|
+
name?: InputMaybe<SortOrder>;
|
|
2726
|
+
value?: InputMaybe<SortOrder>;
|
|
2727
|
+
};
|
|
2728
|
+
|
|
2729
|
+
export enum ServiceStatScalarFieldEnum {
|
|
2730
|
+
Name = 'name',
|
|
2731
|
+
Value = 'value'
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
export type ServiceStatScalarWhereWithAggregatesInput = {
|
|
2735
|
+
AND?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2736
|
+
NOT?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2737
|
+
OR?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2738
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
2739
|
+
value?: InputMaybe<StringWithAggregatesFilter>;
|
|
2740
|
+
};
|
|
2741
|
+
|
|
2742
|
+
export type ServiceStatUpdateInput = {
|
|
2743
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2744
|
+
value?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2745
|
+
};
|
|
2746
|
+
|
|
2747
|
+
export type ServiceStatUpdateManyMutationInput = {
|
|
2748
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2749
|
+
value?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2750
|
+
};
|
|
2751
|
+
|
|
2752
|
+
export type ServiceStatWhereInput = {
|
|
2753
|
+
AND?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2754
|
+
NOT?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2755
|
+
OR?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2756
|
+
name?: InputMaybe<StringFilter>;
|
|
2757
|
+
value?: InputMaybe<StringFilter>;
|
|
2758
|
+
};
|
|
2759
|
+
|
|
2760
|
+
export type ServiceStatWhereUniqueInput = {
|
|
2761
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2762
|
+
};
|
|
2763
|
+
|
|
2764
|
+
/** Optionally reverse the result sort order from `HEIGHT_DESC` (default) to `HEIGHT_ASC`. */
|
|
2765
|
+
export enum SortOrder {
|
|
2766
|
+
/** Results are sorted by the transaction block height in ascending order, with the oldest transactions appearing first, and the most recent and pending/unconfirmed appearing last. */
|
|
2767
|
+
HeightAsc = 'HEIGHT_ASC',
|
|
2768
|
+
/** Results are sorted by the transaction block height in descending order, with the most recent and unconfirmed/pending transactions appearing first. */
|
|
2769
|
+
HeightDesc = 'HEIGHT_DESC',
|
|
2770
|
+
Asc = 'asc',
|
|
2771
|
+
Desc = 'desc'
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
export type StringFieldUpdateOperationsInput = {
|
|
2775
|
+
set?: InputMaybe<Scalars['String']['input']>;
|
|
2776
|
+
};
|
|
2777
|
+
|
|
2778
|
+
export type StringFilter = {
|
|
2779
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
2780
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2781
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
2782
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
2783
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
2784
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2785
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
2786
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
2787
|
+
mode?: InputMaybe<QueryMode>;
|
|
2788
|
+
not?: InputMaybe<NestedStringFilter>;
|
|
2789
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2790
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2791
|
+
};
|
|
2792
|
+
|
|
2793
|
+
export type StringWithAggregatesFilter = {
|
|
2794
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
2795
|
+
_max?: InputMaybe<NestedStringFilter>;
|
|
2796
|
+
_min?: InputMaybe<NestedStringFilter>;
|
|
2797
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
2798
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2799
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
2800
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
2801
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
2802
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2803
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
2804
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
2805
|
+
mode?: InputMaybe<QueryMode>;
|
|
2806
|
+
not?: InputMaybe<NestedStringWithAggregatesFilter>;
|
|
2807
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2808
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2809
|
+
};
|
|
2810
|
+
|
|
2811
|
+
export type Tag = {
|
|
2812
|
+
__typename?: 'Tag';
|
|
2813
|
+
/** UTF-8 tag name */
|
|
2814
|
+
name: Scalars['String']['output'];
|
|
2815
|
+
/** UTF-8 tag value */
|
|
2816
|
+
value: Scalars['String']['output'];
|
|
2817
|
+
};
|
|
2818
|
+
|
|
2819
|
+
/** Find transactions with the folowing tag name and value */
|
|
2820
|
+
export type TagFilter = {
|
|
2821
|
+
/** The tag name */
|
|
2822
|
+
name: Scalars['String']['input'];
|
|
2823
|
+
/** The operator to apply to to the tag filter. Defaults to EQ (equal). */
|
|
2824
|
+
op?: InputMaybe<TagOperator>;
|
|
2825
|
+
/**
|
|
2826
|
+
* An array of values to match against. If multiple values are passed then transactions with _any_ matching tag value from the set will be returned.
|
|
2827
|
+
*
|
|
2828
|
+
* e.g.
|
|
2829
|
+
*
|
|
2830
|
+
* \`{name: "app-name", values: ["app-1"]}\`
|
|
2831
|
+
*
|
|
2832
|
+
* Returns all transactions where the \`app-name\` tag has a value of \`app-1\`.
|
|
2833
|
+
*
|
|
2834
|
+
* \`{name: "app-name", values: ["app-1", "app-2", "app-3"]}\`
|
|
2835
|
+
*
|
|
2836
|
+
* Returns all transactions where the \`app-name\` tag has a value of either \`app-1\` _or_ \`app-2\` _or_ \`app-3\`.
|
|
2837
|
+
*/
|
|
2838
|
+
values: Array<Scalars['String']['input']>;
|
|
2839
|
+
};
|
|
2840
|
+
|
|
2841
|
+
/** The operator to apply to a tag value. */
|
|
2842
|
+
export enum TagOperator {
|
|
2843
|
+
/** Equal */
|
|
2844
|
+
Eq = 'EQ'
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
export type Timestamp = {
|
|
2848
|
+
__typename?: 'Timestamp';
|
|
2849
|
+
from: Scalars['String']['output'];
|
|
2850
|
+
id: Scalars['String']['output'];
|
|
2851
|
+
timestamp: Scalars['Int']['output'];
|
|
2852
|
+
tree: Scalars['String']['output'];
|
|
2853
|
+
txid: Scalars['String']['output'];
|
|
2854
|
+
};
|
|
2855
|
+
|
|
2856
|
+
export type TimestampAvgAggregate = {
|
|
2857
|
+
__typename?: 'TimestampAvgAggregate';
|
|
2858
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
2859
|
+
};
|
|
2860
|
+
|
|
2861
|
+
export type TimestampAvgOrderByAggregateInput = {
|
|
2862
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2863
|
+
};
|
|
2864
|
+
|
|
2865
|
+
export type TimestampCountAggregate = {
|
|
2866
|
+
__typename?: 'TimestampCountAggregate';
|
|
2867
|
+
_all: Scalars['Int']['output'];
|
|
2868
|
+
from: Scalars['Int']['output'];
|
|
2869
|
+
id: Scalars['Int']['output'];
|
|
2870
|
+
timestamp: Scalars['Int']['output'];
|
|
2871
|
+
tree: Scalars['Int']['output'];
|
|
2872
|
+
txid: Scalars['Int']['output'];
|
|
2873
|
+
};
|
|
2874
|
+
|
|
2875
|
+
export type TimestampCountOrderByAggregateInput = {
|
|
2876
|
+
from?: InputMaybe<SortOrder>;
|
|
2877
|
+
id?: InputMaybe<SortOrder>;
|
|
2878
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2879
|
+
tree?: InputMaybe<SortOrder>;
|
|
2880
|
+
txid?: InputMaybe<SortOrder>;
|
|
2881
|
+
};
|
|
2882
|
+
|
|
2883
|
+
export type TimestampCreateInput = {
|
|
2884
|
+
from: Scalars['String']['input'];
|
|
2885
|
+
id: Scalars['String']['input'];
|
|
2886
|
+
timestamp: Scalars['Int']['input'];
|
|
2887
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
2888
|
+
txid: Scalars['String']['input'];
|
|
2889
|
+
};
|
|
2890
|
+
|
|
2891
|
+
export type TimestampCreateManyInput = {
|
|
2892
|
+
from: Scalars['String']['input'];
|
|
2893
|
+
id: Scalars['String']['input'];
|
|
2894
|
+
timestamp: Scalars['Int']['input'];
|
|
2895
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
2896
|
+
txid: Scalars['String']['input'];
|
|
2897
|
+
};
|
|
2898
|
+
|
|
2899
|
+
export type TimestampGroupBy = {
|
|
2900
|
+
__typename?: 'TimestampGroupBy';
|
|
2901
|
+
_avg?: Maybe<TimestampAvgAggregate>;
|
|
2902
|
+
_count?: Maybe<TimestampCountAggregate>;
|
|
2903
|
+
_max?: Maybe<TimestampMaxAggregate>;
|
|
2904
|
+
_min?: Maybe<TimestampMinAggregate>;
|
|
2905
|
+
_sum?: Maybe<TimestampSumAggregate>;
|
|
2906
|
+
from: Scalars['String']['output'];
|
|
2907
|
+
id: Scalars['String']['output'];
|
|
2908
|
+
timestamp: Scalars['Int']['output'];
|
|
2909
|
+
tree: Scalars['String']['output'];
|
|
2910
|
+
txid: Scalars['String']['output'];
|
|
2911
|
+
};
|
|
2912
|
+
|
|
2913
|
+
export type TimestampMaxAggregate = {
|
|
2914
|
+
__typename?: 'TimestampMaxAggregate';
|
|
2915
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2916
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2917
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2918
|
+
tree?: Maybe<Scalars['String']['output']>;
|
|
2919
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2920
|
+
};
|
|
2921
|
+
|
|
2922
|
+
export type TimestampMaxOrderByAggregateInput = {
|
|
2923
|
+
from?: InputMaybe<SortOrder>;
|
|
2924
|
+
id?: InputMaybe<SortOrder>;
|
|
2925
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2926
|
+
tree?: InputMaybe<SortOrder>;
|
|
2927
|
+
txid?: InputMaybe<SortOrder>;
|
|
2928
|
+
};
|
|
2929
|
+
|
|
2930
|
+
export type TimestampMinAggregate = {
|
|
2931
|
+
__typename?: 'TimestampMinAggregate';
|
|
2932
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2933
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2934
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2935
|
+
tree?: Maybe<Scalars['String']['output']>;
|
|
2936
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2937
|
+
};
|
|
2938
|
+
|
|
2939
|
+
export type TimestampMinOrderByAggregateInput = {
|
|
2940
|
+
from?: InputMaybe<SortOrder>;
|
|
2941
|
+
id?: InputMaybe<SortOrder>;
|
|
2942
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2943
|
+
tree?: InputMaybe<SortOrder>;
|
|
2944
|
+
txid?: InputMaybe<SortOrder>;
|
|
2945
|
+
};
|
|
2946
|
+
|
|
2947
|
+
export type TimestampOrderByWithAggregationInput = {
|
|
2948
|
+
_avg?: InputMaybe<TimestampAvgOrderByAggregateInput>;
|
|
2949
|
+
_count?: InputMaybe<TimestampCountOrderByAggregateInput>;
|
|
2950
|
+
_max?: InputMaybe<TimestampMaxOrderByAggregateInput>;
|
|
2951
|
+
_min?: InputMaybe<TimestampMinOrderByAggregateInput>;
|
|
2952
|
+
_sum?: InputMaybe<TimestampSumOrderByAggregateInput>;
|
|
2953
|
+
from?: InputMaybe<SortOrder>;
|
|
2954
|
+
id?: InputMaybe<SortOrder>;
|
|
2955
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2956
|
+
tree?: InputMaybe<SortOrder>;
|
|
2957
|
+
txid?: InputMaybe<SortOrder>;
|
|
2958
|
+
};
|
|
2959
|
+
|
|
2960
|
+
export type TimestampOrderByWithRelationInput = {
|
|
2961
|
+
from?: InputMaybe<SortOrder>;
|
|
2962
|
+
id?: InputMaybe<SortOrder>;
|
|
2963
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2964
|
+
tree?: InputMaybe<SortOrder>;
|
|
2965
|
+
txid?: InputMaybe<SortOrder>;
|
|
2966
|
+
};
|
|
2967
|
+
|
|
2968
|
+
export enum TimestampScalarFieldEnum {
|
|
2969
|
+
From = 'from',
|
|
2970
|
+
Id = 'id',
|
|
2971
|
+
Timestamp = 'timestamp',
|
|
2972
|
+
Tree = 'tree',
|
|
2973
|
+
Txid = 'txid'
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2976
|
+
export type TimestampScalarWhereWithAggregatesInput = {
|
|
2977
|
+
AND?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2978
|
+
NOT?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2979
|
+
OR?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2980
|
+
from?: InputMaybe<StringWithAggregatesFilter>;
|
|
2981
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
2982
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
2983
|
+
tree?: InputMaybe<StringWithAggregatesFilter>;
|
|
2984
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
2985
|
+
};
|
|
2986
|
+
|
|
2987
|
+
export type TimestampSumAggregate = {
|
|
2988
|
+
__typename?: 'TimestampSumAggregate';
|
|
2989
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2990
|
+
};
|
|
2991
|
+
|
|
2992
|
+
export type TimestampSumOrderByAggregateInput = {
|
|
2993
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2994
|
+
};
|
|
2995
|
+
|
|
2996
|
+
export type TimestampUpdateInput = {
|
|
2997
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2998
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2999
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
3000
|
+
tree?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3001
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3002
|
+
};
|
|
3003
|
+
|
|
3004
|
+
export type TimestampUpdateManyMutationInput = {
|
|
3005
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3006
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3007
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
3008
|
+
tree?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3009
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
3010
|
+
};
|
|
3011
|
+
|
|
3012
|
+
export type TimestampWhereInput = {
|
|
3013
|
+
AND?: InputMaybe<Array<TimestampWhereInput>>;
|
|
3014
|
+
NOT?: InputMaybe<Array<TimestampWhereInput>>;
|
|
3015
|
+
OR?: InputMaybe<Array<TimestampWhereInput>>;
|
|
3016
|
+
from?: InputMaybe<StringFilter>;
|
|
3017
|
+
id?: InputMaybe<StringFilter>;
|
|
3018
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
3019
|
+
tree?: InputMaybe<StringFilter>;
|
|
3020
|
+
txid?: InputMaybe<StringFilter>;
|
|
3021
|
+
};
|
|
3022
|
+
|
|
3023
|
+
export type TimestampWhereUniqueInput = {
|
|
3024
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
3025
|
+
};
|
|
3026
|
+
|
|
3027
|
+
export type Transaction = {
|
|
3028
|
+
__typename?: 'Transaction';
|
|
3029
|
+
anchor: Scalars['String']['output'];
|
|
3030
|
+
/** Transactions with a null block are recent and unconfirmed, if they aren't mined into a block within 60 minutes they will be removed from results. */
|
|
3031
|
+
block?: Maybe<Block>;
|
|
3032
|
+
/**
|
|
3033
|
+
* For bundled data items this references the containing bundle ID.
|
|
3034
|
+
* See: https://github.com/ArweaveTeam/arweave-standards/blob/master/ans/ANS-104.md
|
|
3035
|
+
*/
|
|
3036
|
+
bundledIn?: Maybe<Bundle>;
|
|
3037
|
+
data: MetaData;
|
|
3038
|
+
fee: Amount;
|
|
3039
|
+
id: Scalars['ID']['output'];
|
|
3040
|
+
owner: Owner;
|
|
3041
|
+
/**
|
|
3042
|
+
* @deprecated Don't use, kept for backwards compatability only!
|
|
3043
|
+
* @deprecated Use `bundledIn`
|
|
3044
|
+
*/
|
|
3045
|
+
parent?: Maybe<Parent>;
|
|
3046
|
+
quantity: Amount;
|
|
3047
|
+
recipient: Scalars['String']['output'];
|
|
3048
|
+
signature: Scalars['String']['output'];
|
|
3049
|
+
tags: Array<Tag>;
|
|
3050
|
+
};
|
|
3051
|
+
|
|
3052
|
+
/**
|
|
3053
|
+
* Paginated result set using the GraphQL cursor spec,
|
|
3054
|
+
* see: https://relay.dev/graphql/connections.htm.
|
|
3055
|
+
*/
|
|
3056
|
+
export type TransactionConnection = {
|
|
3057
|
+
__typename?: 'TransactionConnection';
|
|
3058
|
+
edges: Array<TransactionEdge>;
|
|
3059
|
+
pageInfo: PageInfo;
|
|
3060
|
+
};
|
|
3061
|
+
|
|
3062
|
+
/** Paginated result set using the GraphQL cursor spec. */
|
|
3063
|
+
export type TransactionEdge = {
|
|
3064
|
+
__typename?: 'TransactionEdge';
|
|
3065
|
+
/**
|
|
3066
|
+
* The cursor value for fetching the next page.
|
|
3067
|
+
*
|
|
3068
|
+
* Pass this to the \`after\` parameter in \`transactions(after: $cursor)\`, the next page will start from the next item after this.
|
|
3069
|
+
*/
|
|
3070
|
+
cursor: Scalars['String']['output'];
|
|
3071
|
+
/** A transaction object. */
|
|
3072
|
+
node: Transaction;
|
|
3073
|
+
};
|
|
3074
|
+
|
|
3075
|
+
export type AttestationFieldsFragment = { __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } } & { ' $fragmentName'?: 'AttestationFieldsFragment' };
|
|
3076
|
+
|
|
3077
|
+
export type SchemaFieldsFragment = { __typename?: 'Schema', id: string, resolver: string, revocable: boolean, schema: string, index: string, time: number, txid: string, creator: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } & { ' $fragmentName'?: 'SchemaFieldsFragment' };
|
|
3078
|
+
|
|
3079
|
+
export type GetTransactionTagsQueryVariables = Exact<{
|
|
3080
|
+
transactionId: Scalars['ID']['input'];
|
|
3081
|
+
}>;
|
|
3082
|
+
|
|
3083
|
+
|
|
3084
|
+
export type GetTransactionTagsQuery = { __typename?: 'Query', tags?: { __typename?: 'Transaction', id: string, tags: Array<{ __typename?: 'Tag', name: string, value: string }> } | null };
|
|
3085
|
+
|
|
3086
|
+
export type GetSchemasQueryVariables = Exact<{
|
|
3087
|
+
where: SchemaWhereInput;
|
|
3088
|
+
}>;
|
|
3089
|
+
|
|
3090
|
+
|
|
3091
|
+
export type GetSchemasQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };
|
|
3092
|
+
|
|
3093
|
+
export type GetSchemaByNameQueryVariables = Exact<{
|
|
3094
|
+
where: SchemaWhereInput;
|
|
3095
|
+
}>;
|
|
3096
|
+
|
|
3097
|
+
|
|
3098
|
+
export type GetSchemaByNameQuery = { __typename?: 'Query', schemas: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };
|
|
3099
|
+
|
|
3100
|
+
export type GetSeedsQueryVariables = Exact<{
|
|
3101
|
+
where: AttestationWhereInput;
|
|
3102
|
+
}>;
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
export type GetSeedsQuery = { __typename?: 'Query', itemSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, timeCreated: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };
|
|
3106
|
+
|
|
3107
|
+
export type GetSeedIdsQueryVariables = Exact<{
|
|
3108
|
+
where: AttestationWhereInput;
|
|
3109
|
+
}>;
|
|
3110
|
+
|
|
3111
|
+
|
|
3112
|
+
export type GetSeedIdsQuery = { __typename?: 'Query', itemSeedIds: Array<{ __typename?: 'Attestation', id: string }> };
|
|
3113
|
+
|
|
3114
|
+
export type GetStorageTransactionIdQueryVariables = Exact<{
|
|
3115
|
+
where: AttestationWhereInput;
|
|
3116
|
+
}>;
|
|
3117
|
+
|
|
3118
|
+
|
|
3119
|
+
export type GetStorageTransactionIdQuery = { __typename?: 'Query', storageTransactionId: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string }> };
|
|
3120
|
+
|
|
3121
|
+
export type GetVersionsQueryVariables = Exact<{
|
|
3122
|
+
where: AttestationWhereInput;
|
|
3123
|
+
}>;
|
|
3124
|
+
|
|
3125
|
+
|
|
3126
|
+
export type GetVersionsQuery = { __typename?: 'Query', itemVersions: Array<(
|
|
3127
|
+
{ __typename?: 'Attestation' }
|
|
3128
|
+
& { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }
|
|
3129
|
+
)> };
|
|
3130
|
+
|
|
3131
|
+
export type GetPropertiesQueryVariables = Exact<{
|
|
3132
|
+
where: AttestationWhereInput;
|
|
3133
|
+
}>;
|
|
3134
|
+
|
|
3135
|
+
|
|
3136
|
+
export type GetPropertiesQuery = { __typename?: 'Query', itemProperties: Array<(
|
|
3137
|
+
{ __typename?: 'Attestation' }
|
|
3138
|
+
& { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }
|
|
3139
|
+
)> };
|
|
3140
|
+
|
|
3141
|
+
export type GetAllPropertiesForAllVersionsQueryVariables = Exact<{
|
|
3142
|
+
where: AttestationWhereInput;
|
|
3143
|
+
}>;
|
|
3144
|
+
|
|
3145
|
+
|
|
3146
|
+
export type GetAllPropertiesForAllVersionsQuery = { __typename?: 'Query', allProperties: Array<(
|
|
3147
|
+
{ __typename?: 'Attestation' }
|
|
3148
|
+
& { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }
|
|
3149
|
+
)> };
|
|
3150
|
+
|
|
3151
|
+
export type GetFilesMetadataQueryVariables = Exact<{
|
|
3152
|
+
where: AttestationWhereInput;
|
|
3153
|
+
}>;
|
|
3154
|
+
|
|
3155
|
+
|
|
3156
|
+
export type GetFilesMetadataQuery = { __typename?: 'Query', filesMetadata: Array<(
|
|
3157
|
+
{ __typename?: 'Attestation' }
|
|
3158
|
+
& { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }
|
|
3159
|
+
)> };
|
|
3160
|
+
|
|
3161
|
+
export type GetArweaveTransactionsQueryVariables = Exact<{
|
|
3162
|
+
owners?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
3163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3165
|
+
}>;
|
|
3166
|
+
|
|
3167
|
+
|
|
3168
|
+
export type GetArweaveTransactionsQuery = { __typename?: 'Query', transactions: { __typename?: 'TransactionConnection', edges: Array<{ __typename?: 'TransactionEdge', cursor: string, node: { __typename?: 'Transaction', id: string, anchor: string, signature: string, block?: { __typename?: 'Block', id: string, height: number } | null, data: { __typename?: 'MetaData', size: string, type?: string | null }, tags: Array<{ __typename?: 'Tag', name: string, value: string }> } }>, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean } } };
|
|
3169
|
+
|
|
3170
|
+
export type GetImageSeedsQueryVariables = Exact<{
|
|
3171
|
+
where: AttestationWhereInput;
|
|
3172
|
+
}>;
|
|
3173
|
+
|
|
3174
|
+
|
|
3175
|
+
export type GetImageSeedsQuery = { __typename?: 'Query', imageSeeds: Array<{ __typename?: 'Attestation', id: string, decodedDataJson: string, attester: string, refUID: string, revoked: boolean, schemaId: string, txid: string, timeCreated: number, time: number, isOffchain: boolean, schema: { __typename?: 'Schema', schemaNames: Array<{ __typename?: 'SchemaName', name: string }> } }> };
|
|
3176
|
+
|
|
3177
|
+
export type GetImageVersionsQueryVariables = Exact<{
|
|
3178
|
+
where: AttestationWhereInput;
|
|
3179
|
+
}>;
|
|
3180
|
+
|
|
3181
|
+
|
|
3182
|
+
export type GetImageVersionsQuery = { __typename?: 'Query', imageVersions: Array<(
|
|
3183
|
+
{ __typename?: 'Attestation' }
|
|
3184
|
+
& { ' $fragmentRefs'?: { 'AttestationFieldsFragment': AttestationFieldsFragment } }
|
|
3185
|
+
)> };
|
|
3186
|
+
|
|
3187
|
+
export type GetSchemaUidsQueryVariables = Exact<{
|
|
3188
|
+
where: SchemaWhereInput;
|
|
3189
|
+
}>;
|
|
3190
|
+
|
|
3191
|
+
|
|
3192
|
+
export type GetSchemaUidsQuery = { __typename?: 'Query', schemaUids: Array<{ __typename?: 'Schema', id: string, schema: string, schemaNames: Array<{ __typename?: 'SchemaName', name: string }> }> };
|
|
3193
|
+
|
|
3194
|
+
export const AttestationFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<AttestationFieldsFragment, unknown>;
|
|
3195
|
+
export const SchemaFieldsFragmentDoc = {"kind":"Document","definitions":[{"kind":"FragmentDefinition","name":{"kind":"Name","value":"schemaFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Schema"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"resolver"}},{"kind":"Field","name":{"kind":"Name","value":"revocable"}},{"kind":"Field","name":{"kind":"Name","value":"schema"}},{"kind":"Field","name":{"kind":"Name","value":"index"}},{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"creator"}}]}}]} as unknown as DocumentNode<SchemaFieldsFragment, unknown>;
|
|
3196
|
+
export const GetTransactionTagsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetTransactionTags"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"transactionId"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ID"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"tags"},"name":{"kind":"Name","value":"transaction"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"id"},"value":{"kind":"Variable","name":{"kind":"Name","value":"transactionId"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]}}]} as unknown as DocumentNode<GetTransactionTagsQuery, GetTransactionTagsQueryVariables>;
|
|
3197
|
+
export const GetSchemasDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSchemas"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SchemaWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"schemas"},"name":{"kind":"Name","value":"schemata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"schema"}},{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemasQuery, GetSchemasQueryVariables>;
|
|
3198
|
+
export const GetSchemaByNameDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSchemaByName"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SchemaWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"schemas"},"name":{"kind":"Name","value":"schemata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"schema"}},{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemaByNameQuery, GetSchemaByNameQueryVariables>;
|
|
3199
|
+
export const GetSeedsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSeeds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"itemSeeds"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]}}]} as unknown as DocumentNode<GetSeedsQuery, GetSeedsQueryVariables>;
|
|
3200
|
+
export const GetSeedIdsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSeedIds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"itemSeedIds"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}}]} as unknown as DocumentNode<GetSeedIdsQuery, GetSeedIdsQueryVariables>;
|
|
3201
|
+
export const GetStorageTransactionIdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetStorageTransactionId"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"storageTransactionId"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}}]}}]}}]} as unknown as DocumentNode<GetStorageTransactionIdQuery, GetStorageTransactionIdQueryVariables>;
|
|
3202
|
+
export const GetVersionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetVersions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"itemVersions"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"attestationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<GetVersionsQuery, GetVersionsQueryVariables>;
|
|
3203
|
+
export const GetPropertiesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetProperties"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"itemProperties"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"attestationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<GetPropertiesQuery, GetPropertiesQueryVariables>;
|
|
3204
|
+
export const GetAllPropertiesForAllVersionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetAllPropertiesForAllVersions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"allProperties"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"attestationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<GetAllPropertiesForAllVersionsQuery, GetAllPropertiesForAllVersionsQueryVariables>;
|
|
3205
|
+
export const GetFilesMetadataDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetFilesMetadata"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"filesMetadata"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"attestationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<GetFilesMetadataQuery, GetFilesMetadataQueryVariables>;
|
|
3206
|
+
export const GetArweaveTransactionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetArweaveTransactions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"owners"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"first"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"after"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"transactions"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"owners"},"value":{"kind":"Variable","name":{"kind":"Name","value":"owners"}}},{"kind":"Argument","name":{"kind":"Name","value":"first"},"value":{"kind":"Variable","name":{"kind":"Name","value":"first"}}},{"kind":"Argument","name":{"kind":"Name","value":"after"},"value":{"kind":"Variable","name":{"kind":"Name","value":"after"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"edges"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"cursor"}},{"kind":"Field","name":{"kind":"Name","value":"node"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"anchor"}},{"kind":"Field","name":{"kind":"Name","value":"signature"}},{"kind":"Field","name":{"kind":"Name","value":"block"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"height"}}]}},{"kind":"Field","name":{"kind":"Name","value":"data"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"size"}},{"kind":"Field","name":{"kind":"Name","value":"type"}}]}},{"kind":"Field","name":{"kind":"Name","value":"tags"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"pageInfo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"hasNextPage"}}]}}]}}]}}]} as unknown as DocumentNode<GetArweaveTransactionsQuery, GetArweaveTransactionsQueryVariables>;
|
|
3207
|
+
export const GetImageSeedsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetImageSeeds"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"imageSeeds"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]}}]} as unknown as DocumentNode<GetImageSeedsQuery, GetImageSeedsQueryVariables>;
|
|
3208
|
+
export const GetImageVersionsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetImageVersions"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"AttestationWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"imageVersions"},"name":{"kind":"Name","value":"attestations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}},{"kind":"Argument","name":{"kind":"Name","value":"orderBy"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"timeCreated"},"value":{"kind":"EnumValue","value":"desc"}}]}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"attestationFields"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"attestationFields"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Attestation"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"decodedDataJson"}},{"kind":"Field","name":{"kind":"Name","value":"attester"}},{"kind":"Field","name":{"kind":"Name","value":"schema"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"refUID"}},{"kind":"Field","name":{"kind":"Name","value":"revoked"}},{"kind":"Field","name":{"kind":"Name","value":"schemaId"}},{"kind":"Field","name":{"kind":"Name","value":"txid"}},{"kind":"Field","name":{"kind":"Name","value":"timeCreated"}},{"kind":"Field","name":{"kind":"Name","value":"time"}},{"kind":"Field","name":{"kind":"Name","value":"isOffchain"}}]}}]} as unknown as DocumentNode<GetImageVersionsQuery, GetImageVersionsQueryVariables>;
|
|
3209
|
+
export const GetSchemaUidsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSchemaUids"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"where"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"SchemaWhereInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","alias":{"kind":"Name","value":"schemaUids"},"name":{"kind":"Name","value":"schemata"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"where"},"value":{"kind":"Variable","name":{"kind":"Name","value":"where"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"schema"}},{"kind":"Field","name":{"kind":"Name","value":"schemaNames"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}}]}}]}}]}}]} as unknown as DocumentNode<GetSchemaUidsQuery, GetSchemaUidsQueryVariables>;
|