@seedprotocol/eas 0.5.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/EasClient/BaseEasClient.d.ts +16 -0
- package/dist/EasClient/BaseEasClient.d.ts.map +1 -0
- package/dist/EasClient/IEasClient.d.ts +5 -0
- package/dist/EasClient/IEasClient.d.ts.map +1 -0
- package/dist/QueryClient/BaseQueryClient.d.ts +9 -0
- package/dist/QueryClient/BaseQueryClient.d.ts.map +1 -0
- package/dist/QueryClient/IQueryClient.d.ts +15 -0
- package/dist/QueryClient/IQueryClient.d.ts.map +1 -0
- package/dist/QueryClient/IQueryClientFactory.d.ts +5 -0
- package/dist/QueryClient/IQueryClientFactory.d.ts.map +1 -0
- package/dist/api.d.ts +25 -0
- package/dist/api.d.ts.map +1 -0
- package/dist/constants-Ch1B4W2F.js +35 -0
- package/dist/constants-Ch1B4W2F.js.map +1 -0
- package/dist/constants.d.ts +5 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/easPropertyCanonical.d.ts +15 -0
- package/dist/easPropertyCanonical.d.ts.map +1 -0
- package/dist/easRevokedFilter.d.ts +10 -0
- package/dist/easRevokedFilter.d.ts.map +1 -0
- package/dist/easUid.d.ts +13 -0
- package/dist/easUid.d.ts.map +1 -0
- package/dist/graphql/fragments/Attestation.d.ts +2 -0
- package/dist/graphql/fragments/Attestation.d.ts.map +1 -0
- package/dist/graphql/fragments/Schema.d.ts +2 -0
- package/dist/graphql/fragments/Schema.d.ts.map +1 -0
- package/dist/graphql/fragments/index.d.ts +3 -0
- package/dist/graphql/fragments/index.d.ts.map +1 -0
- package/dist/graphql/gql/fragment-masking.d.ts +20 -0
- package/dist/graphql/gql/fragment-masking.d.ts.map +1 -0
- package/dist/graphql/gql/gql.d.ts +97 -0
- package/dist/graphql/gql/gql.d.ts.map +1 -0
- package/dist/graphql/gql/graphql.d.ts +2683 -0
- package/dist/graphql/gql/graphql.d.ts.map +1 -0
- package/dist/graphql/gql/index.d.ts +3 -0
- package/dist/graphql/gql/index.d.ts.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2210 -0
- package/dist/index.js.map +1 -0
- package/dist/node/EasClient.d.ts +9 -0
- package/dist/node/EasClient.d.ts.map +1 -0
- package/dist/node/QueryClient.d.ts +8 -0
- package/dist/node/QueryClient.d.ts.map +1 -0
- package/dist/node/index.d.ts +5 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node.js +31 -0
- package/dist/node.js.map +1 -0
- package/dist/queries.d.ts +36 -0
- package/dist/queries.d.ts.map +1 -0
- package/dist/shims/typed-document-node.d.ts +5 -0
- package/dist/shims/typed-document-node.d.ts.map +1 -0
- package/dist/stores/schemaUidCache.d.ts +13 -0
- package/dist/stores/schemaUidCache.d.ts.map +1 -0
- package/dist/utils.d.ts +4 -0
- package/dist/utils.d.ts.map +1 -0
- package/package.json +57 -0
|
@@ -0,0 +1,2683 @@
|
|
|
1
|
+
import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
+
export type Maybe<T> = T | null;
|
|
3
|
+
export type InputMaybe<T> = T | null | undefined;
|
|
4
|
+
export type Exact<T extends {
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
}> = {
|
|
7
|
+
[K in keyof T]: T[K];
|
|
8
|
+
};
|
|
9
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
10
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
11
|
+
};
|
|
12
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
13
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
14
|
+
};
|
|
15
|
+
export type MakeEmpty<T extends {
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
}, K extends keyof T> = {
|
|
18
|
+
[_ in K]?: never;
|
|
19
|
+
};
|
|
20
|
+
export type Incremental<T> = T | {
|
|
21
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
22
|
+
};
|
|
23
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
24
|
+
export type Scalars = {
|
|
25
|
+
ID: {
|
|
26
|
+
input: string;
|
|
27
|
+
output: string;
|
|
28
|
+
};
|
|
29
|
+
String: {
|
|
30
|
+
input: string;
|
|
31
|
+
output: string;
|
|
32
|
+
};
|
|
33
|
+
Boolean: {
|
|
34
|
+
input: boolean;
|
|
35
|
+
output: boolean;
|
|
36
|
+
};
|
|
37
|
+
Int: {
|
|
38
|
+
input: number;
|
|
39
|
+
output: number;
|
|
40
|
+
};
|
|
41
|
+
Float: {
|
|
42
|
+
input: number;
|
|
43
|
+
output: number;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export type AffectedRowsOutput = {
|
|
47
|
+
__typename?: 'AffectedRowsOutput';
|
|
48
|
+
count: Scalars['Int']['output'];
|
|
49
|
+
};
|
|
50
|
+
export type AggregateAttestation = {
|
|
51
|
+
__typename?: 'AggregateAttestation';
|
|
52
|
+
_avg?: Maybe<AttestationAvgAggregate>;
|
|
53
|
+
_count?: Maybe<AttestationCountAggregate>;
|
|
54
|
+
_max?: Maybe<AttestationMaxAggregate>;
|
|
55
|
+
_min?: Maybe<AttestationMinAggregate>;
|
|
56
|
+
_sum?: Maybe<AttestationSumAggregate>;
|
|
57
|
+
};
|
|
58
|
+
export type AggregateEnsName = {
|
|
59
|
+
__typename?: 'AggregateEnsName';
|
|
60
|
+
_avg?: Maybe<EnsNameAvgAggregate>;
|
|
61
|
+
_count?: Maybe<EnsNameCountAggregate>;
|
|
62
|
+
_max?: Maybe<EnsNameMaxAggregate>;
|
|
63
|
+
_min?: Maybe<EnsNameMinAggregate>;
|
|
64
|
+
_sum?: Maybe<EnsNameSumAggregate>;
|
|
65
|
+
};
|
|
66
|
+
export type AggregateOffchainRevocation = {
|
|
67
|
+
__typename?: 'AggregateOffchainRevocation';
|
|
68
|
+
_avg?: Maybe<OffchainRevocationAvgAggregate>;
|
|
69
|
+
_count?: Maybe<OffchainRevocationCountAggregate>;
|
|
70
|
+
_max?: Maybe<OffchainRevocationMaxAggregate>;
|
|
71
|
+
_min?: Maybe<OffchainRevocationMinAggregate>;
|
|
72
|
+
_sum?: Maybe<OffchainRevocationSumAggregate>;
|
|
73
|
+
};
|
|
74
|
+
export type AggregateSchema = {
|
|
75
|
+
__typename?: 'AggregateSchema';
|
|
76
|
+
_avg?: Maybe<SchemaAvgAggregate>;
|
|
77
|
+
_count?: Maybe<SchemaCountAggregate>;
|
|
78
|
+
_max?: Maybe<SchemaMaxAggregate>;
|
|
79
|
+
_min?: Maybe<SchemaMinAggregate>;
|
|
80
|
+
_sum?: Maybe<SchemaSumAggregate>;
|
|
81
|
+
};
|
|
82
|
+
export type AggregateSchemaName = {
|
|
83
|
+
__typename?: 'AggregateSchemaName';
|
|
84
|
+
_avg?: Maybe<SchemaNameAvgAggregate>;
|
|
85
|
+
_count?: Maybe<SchemaNameCountAggregate>;
|
|
86
|
+
_max?: Maybe<SchemaNameMaxAggregate>;
|
|
87
|
+
_min?: Maybe<SchemaNameMinAggregate>;
|
|
88
|
+
_sum?: Maybe<SchemaNameSumAggregate>;
|
|
89
|
+
};
|
|
90
|
+
export type AggregateServiceStat = {
|
|
91
|
+
__typename?: 'AggregateServiceStat';
|
|
92
|
+
_count?: Maybe<ServiceStatCountAggregate>;
|
|
93
|
+
_max?: Maybe<ServiceStatMaxAggregate>;
|
|
94
|
+
_min?: Maybe<ServiceStatMinAggregate>;
|
|
95
|
+
};
|
|
96
|
+
export type AggregateTimestamp = {
|
|
97
|
+
__typename?: 'AggregateTimestamp';
|
|
98
|
+
_avg?: Maybe<TimestampAvgAggregate>;
|
|
99
|
+
_count?: Maybe<TimestampCountAggregate>;
|
|
100
|
+
_max?: Maybe<TimestampMaxAggregate>;
|
|
101
|
+
_min?: Maybe<TimestampMinAggregate>;
|
|
102
|
+
_sum?: Maybe<TimestampSumAggregate>;
|
|
103
|
+
};
|
|
104
|
+
export type Attestation = {
|
|
105
|
+
__typename?: 'Attestation';
|
|
106
|
+
attester: Scalars['String']['output'];
|
|
107
|
+
data: Scalars['String']['output'];
|
|
108
|
+
decodedDataJson: Scalars['String']['output'];
|
|
109
|
+
expirationTime: Scalars['Int']['output'];
|
|
110
|
+
id: Scalars['String']['output'];
|
|
111
|
+
ipfsHash: Scalars['String']['output'];
|
|
112
|
+
isOffchain: Scalars['Boolean']['output'];
|
|
113
|
+
recipient: Scalars['String']['output'];
|
|
114
|
+
refUID: Scalars['String']['output'];
|
|
115
|
+
revocable: Scalars['Boolean']['output'];
|
|
116
|
+
revocationTime: Scalars['Int']['output'];
|
|
117
|
+
revoked: Scalars['Boolean']['output'];
|
|
118
|
+
schema: Schema;
|
|
119
|
+
schemaId: Scalars['String']['output'];
|
|
120
|
+
time: Scalars['Int']['output'];
|
|
121
|
+
timeCreated: Scalars['Int']['output'];
|
|
122
|
+
txid: Scalars['String']['output'];
|
|
123
|
+
};
|
|
124
|
+
export type AttestationAvgAggregate = {
|
|
125
|
+
__typename?: 'AttestationAvgAggregate';
|
|
126
|
+
expirationTime?: Maybe<Scalars['Float']['output']>;
|
|
127
|
+
revocationTime?: Maybe<Scalars['Float']['output']>;
|
|
128
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
129
|
+
timeCreated?: Maybe<Scalars['Float']['output']>;
|
|
130
|
+
};
|
|
131
|
+
export type AttestationAvgOrderByAggregateInput = {
|
|
132
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
133
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
134
|
+
time?: InputMaybe<SortOrder>;
|
|
135
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
136
|
+
};
|
|
137
|
+
export type AttestationCountAggregate = {
|
|
138
|
+
__typename?: 'AttestationCountAggregate';
|
|
139
|
+
_all: Scalars['Int']['output'];
|
|
140
|
+
attester: Scalars['Int']['output'];
|
|
141
|
+
data: Scalars['Int']['output'];
|
|
142
|
+
decodedDataJson: Scalars['Int']['output'];
|
|
143
|
+
expirationTime: Scalars['Int']['output'];
|
|
144
|
+
id: Scalars['Int']['output'];
|
|
145
|
+
ipfsHash: Scalars['Int']['output'];
|
|
146
|
+
isOffchain: Scalars['Int']['output'];
|
|
147
|
+
recipient: Scalars['Int']['output'];
|
|
148
|
+
refUID: Scalars['Int']['output'];
|
|
149
|
+
revocable: Scalars['Int']['output'];
|
|
150
|
+
revocationTime: Scalars['Int']['output'];
|
|
151
|
+
revoked: Scalars['Int']['output'];
|
|
152
|
+
schemaId: Scalars['Int']['output'];
|
|
153
|
+
time: Scalars['Int']['output'];
|
|
154
|
+
timeCreated: Scalars['Int']['output'];
|
|
155
|
+
txid: Scalars['Int']['output'];
|
|
156
|
+
};
|
|
157
|
+
export type AttestationCountOrderByAggregateInput = {
|
|
158
|
+
attester?: InputMaybe<SortOrder>;
|
|
159
|
+
data?: InputMaybe<SortOrder>;
|
|
160
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
161
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
162
|
+
id?: InputMaybe<SortOrder>;
|
|
163
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
164
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
165
|
+
recipient?: InputMaybe<SortOrder>;
|
|
166
|
+
refUID?: InputMaybe<SortOrder>;
|
|
167
|
+
revocable?: InputMaybe<SortOrder>;
|
|
168
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
169
|
+
revoked?: InputMaybe<SortOrder>;
|
|
170
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
171
|
+
time?: InputMaybe<SortOrder>;
|
|
172
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
173
|
+
txid?: InputMaybe<SortOrder>;
|
|
174
|
+
};
|
|
175
|
+
export type AttestationCreateInput = {
|
|
176
|
+
attester: Scalars['String']['input'];
|
|
177
|
+
data: Scalars['String']['input'];
|
|
178
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
179
|
+
expirationTime: Scalars['Int']['input'];
|
|
180
|
+
id: Scalars['String']['input'];
|
|
181
|
+
ipfsHash: Scalars['String']['input'];
|
|
182
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
183
|
+
recipient: Scalars['String']['input'];
|
|
184
|
+
refUID: Scalars['String']['input'];
|
|
185
|
+
revocable: Scalars['Boolean']['input'];
|
|
186
|
+
revocationTime: Scalars['Int']['input'];
|
|
187
|
+
revoked: Scalars['Boolean']['input'];
|
|
188
|
+
schema: SchemaCreateNestedOneWithoutAttestationsInput;
|
|
189
|
+
time: Scalars['Int']['input'];
|
|
190
|
+
timeCreated: Scalars['Int']['input'];
|
|
191
|
+
txid: Scalars['String']['input'];
|
|
192
|
+
};
|
|
193
|
+
export type AttestationCreateManyInput = {
|
|
194
|
+
attester: Scalars['String']['input'];
|
|
195
|
+
data: Scalars['String']['input'];
|
|
196
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
197
|
+
expirationTime: Scalars['Int']['input'];
|
|
198
|
+
id: Scalars['String']['input'];
|
|
199
|
+
ipfsHash: Scalars['String']['input'];
|
|
200
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
201
|
+
recipient: Scalars['String']['input'];
|
|
202
|
+
refUID: Scalars['String']['input'];
|
|
203
|
+
revocable: Scalars['Boolean']['input'];
|
|
204
|
+
revocationTime: Scalars['Int']['input'];
|
|
205
|
+
revoked: Scalars['Boolean']['input'];
|
|
206
|
+
schemaId: Scalars['String']['input'];
|
|
207
|
+
time: Scalars['Int']['input'];
|
|
208
|
+
timeCreated: Scalars['Int']['input'];
|
|
209
|
+
txid: Scalars['String']['input'];
|
|
210
|
+
};
|
|
211
|
+
export type AttestationCreateManySchemaInput = {
|
|
212
|
+
attester: Scalars['String']['input'];
|
|
213
|
+
data: Scalars['String']['input'];
|
|
214
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
215
|
+
expirationTime: Scalars['Int']['input'];
|
|
216
|
+
id: Scalars['String']['input'];
|
|
217
|
+
ipfsHash: Scalars['String']['input'];
|
|
218
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
219
|
+
recipient: Scalars['String']['input'];
|
|
220
|
+
refUID: Scalars['String']['input'];
|
|
221
|
+
revocable: Scalars['Boolean']['input'];
|
|
222
|
+
revocationTime: Scalars['Int']['input'];
|
|
223
|
+
revoked: Scalars['Boolean']['input'];
|
|
224
|
+
time: Scalars['Int']['input'];
|
|
225
|
+
timeCreated: Scalars['Int']['input'];
|
|
226
|
+
txid: Scalars['String']['input'];
|
|
227
|
+
};
|
|
228
|
+
export type AttestationCreateManySchemaInputEnvelope = {
|
|
229
|
+
data: Array<AttestationCreateManySchemaInput>;
|
|
230
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
231
|
+
};
|
|
232
|
+
export type AttestationCreateNestedManyWithoutSchemaInput = {
|
|
233
|
+
connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
234
|
+
connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;
|
|
235
|
+
create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;
|
|
236
|
+
createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;
|
|
237
|
+
};
|
|
238
|
+
export type AttestationCreateOrConnectWithoutSchemaInput = {
|
|
239
|
+
create: AttestationCreateWithoutSchemaInput;
|
|
240
|
+
where: AttestationWhereUniqueInput;
|
|
241
|
+
};
|
|
242
|
+
export type AttestationCreateWithoutSchemaInput = {
|
|
243
|
+
attester: Scalars['String']['input'];
|
|
244
|
+
data: Scalars['String']['input'];
|
|
245
|
+
decodedDataJson?: InputMaybe<Scalars['String']['input']>;
|
|
246
|
+
expirationTime: Scalars['Int']['input'];
|
|
247
|
+
id: Scalars['String']['input'];
|
|
248
|
+
ipfsHash: Scalars['String']['input'];
|
|
249
|
+
isOffchain: Scalars['Boolean']['input'];
|
|
250
|
+
recipient: Scalars['String']['input'];
|
|
251
|
+
refUID: Scalars['String']['input'];
|
|
252
|
+
revocable: Scalars['Boolean']['input'];
|
|
253
|
+
revocationTime: Scalars['Int']['input'];
|
|
254
|
+
revoked: Scalars['Boolean']['input'];
|
|
255
|
+
time: Scalars['Int']['input'];
|
|
256
|
+
timeCreated: Scalars['Int']['input'];
|
|
257
|
+
txid: Scalars['String']['input'];
|
|
258
|
+
};
|
|
259
|
+
export type AttestationGroupBy = {
|
|
260
|
+
__typename?: 'AttestationGroupBy';
|
|
261
|
+
_avg?: Maybe<AttestationAvgAggregate>;
|
|
262
|
+
_count?: Maybe<AttestationCountAggregate>;
|
|
263
|
+
_max?: Maybe<AttestationMaxAggregate>;
|
|
264
|
+
_min?: Maybe<AttestationMinAggregate>;
|
|
265
|
+
_sum?: Maybe<AttestationSumAggregate>;
|
|
266
|
+
attester: Scalars['String']['output'];
|
|
267
|
+
data: Scalars['String']['output'];
|
|
268
|
+
decodedDataJson: Scalars['String']['output'];
|
|
269
|
+
expirationTime: Scalars['Int']['output'];
|
|
270
|
+
id: Scalars['String']['output'];
|
|
271
|
+
ipfsHash: Scalars['String']['output'];
|
|
272
|
+
isOffchain: Scalars['Boolean']['output'];
|
|
273
|
+
recipient: Scalars['String']['output'];
|
|
274
|
+
refUID: Scalars['String']['output'];
|
|
275
|
+
revocable: Scalars['Boolean']['output'];
|
|
276
|
+
revocationTime: Scalars['Int']['output'];
|
|
277
|
+
revoked: Scalars['Boolean']['output'];
|
|
278
|
+
schemaId: Scalars['String']['output'];
|
|
279
|
+
time: Scalars['Int']['output'];
|
|
280
|
+
timeCreated: Scalars['Int']['output'];
|
|
281
|
+
txid: Scalars['String']['output'];
|
|
282
|
+
};
|
|
283
|
+
export type AttestationListRelationFilter = {
|
|
284
|
+
every?: InputMaybe<AttestationWhereInput>;
|
|
285
|
+
none?: InputMaybe<AttestationWhereInput>;
|
|
286
|
+
some?: InputMaybe<AttestationWhereInput>;
|
|
287
|
+
};
|
|
288
|
+
export type AttestationMaxAggregate = {
|
|
289
|
+
__typename?: 'AttestationMaxAggregate';
|
|
290
|
+
attester?: Maybe<Scalars['String']['output']>;
|
|
291
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
292
|
+
decodedDataJson?: Maybe<Scalars['String']['output']>;
|
|
293
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
294
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
295
|
+
ipfsHash?: Maybe<Scalars['String']['output']>;
|
|
296
|
+
isOffchain?: Maybe<Scalars['Boolean']['output']>;
|
|
297
|
+
recipient?: Maybe<Scalars['String']['output']>;
|
|
298
|
+
refUID?: Maybe<Scalars['String']['output']>;
|
|
299
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
300
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
301
|
+
revoked?: Maybe<Scalars['Boolean']['output']>;
|
|
302
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
303
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
304
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
305
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
306
|
+
};
|
|
307
|
+
export type AttestationMaxOrderByAggregateInput = {
|
|
308
|
+
attester?: InputMaybe<SortOrder>;
|
|
309
|
+
data?: InputMaybe<SortOrder>;
|
|
310
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
311
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
312
|
+
id?: InputMaybe<SortOrder>;
|
|
313
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
314
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
315
|
+
recipient?: InputMaybe<SortOrder>;
|
|
316
|
+
refUID?: InputMaybe<SortOrder>;
|
|
317
|
+
revocable?: InputMaybe<SortOrder>;
|
|
318
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
319
|
+
revoked?: InputMaybe<SortOrder>;
|
|
320
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
321
|
+
time?: InputMaybe<SortOrder>;
|
|
322
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
323
|
+
txid?: InputMaybe<SortOrder>;
|
|
324
|
+
};
|
|
325
|
+
export type AttestationMinAggregate = {
|
|
326
|
+
__typename?: 'AttestationMinAggregate';
|
|
327
|
+
attester?: Maybe<Scalars['String']['output']>;
|
|
328
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
329
|
+
decodedDataJson?: Maybe<Scalars['String']['output']>;
|
|
330
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
331
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
332
|
+
ipfsHash?: Maybe<Scalars['String']['output']>;
|
|
333
|
+
isOffchain?: Maybe<Scalars['Boolean']['output']>;
|
|
334
|
+
recipient?: Maybe<Scalars['String']['output']>;
|
|
335
|
+
refUID?: Maybe<Scalars['String']['output']>;
|
|
336
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
337
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
338
|
+
revoked?: Maybe<Scalars['Boolean']['output']>;
|
|
339
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
340
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
341
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
342
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
343
|
+
};
|
|
344
|
+
export type AttestationMinOrderByAggregateInput = {
|
|
345
|
+
attester?: InputMaybe<SortOrder>;
|
|
346
|
+
data?: InputMaybe<SortOrder>;
|
|
347
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
348
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
349
|
+
id?: InputMaybe<SortOrder>;
|
|
350
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
351
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
352
|
+
recipient?: InputMaybe<SortOrder>;
|
|
353
|
+
refUID?: InputMaybe<SortOrder>;
|
|
354
|
+
revocable?: InputMaybe<SortOrder>;
|
|
355
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
356
|
+
revoked?: InputMaybe<SortOrder>;
|
|
357
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
358
|
+
time?: InputMaybe<SortOrder>;
|
|
359
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
360
|
+
txid?: InputMaybe<SortOrder>;
|
|
361
|
+
};
|
|
362
|
+
export type AttestationOrderByRelationAggregateInput = {
|
|
363
|
+
_count?: InputMaybe<SortOrder>;
|
|
364
|
+
};
|
|
365
|
+
export type AttestationOrderByWithAggregationInput = {
|
|
366
|
+
_avg?: InputMaybe<AttestationAvgOrderByAggregateInput>;
|
|
367
|
+
_count?: InputMaybe<AttestationCountOrderByAggregateInput>;
|
|
368
|
+
_max?: InputMaybe<AttestationMaxOrderByAggregateInput>;
|
|
369
|
+
_min?: InputMaybe<AttestationMinOrderByAggregateInput>;
|
|
370
|
+
_sum?: InputMaybe<AttestationSumOrderByAggregateInput>;
|
|
371
|
+
attester?: InputMaybe<SortOrder>;
|
|
372
|
+
data?: InputMaybe<SortOrder>;
|
|
373
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
374
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
375
|
+
id?: InputMaybe<SortOrder>;
|
|
376
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
377
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
378
|
+
recipient?: InputMaybe<SortOrder>;
|
|
379
|
+
refUID?: InputMaybe<SortOrder>;
|
|
380
|
+
revocable?: InputMaybe<SortOrder>;
|
|
381
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
382
|
+
revoked?: InputMaybe<SortOrder>;
|
|
383
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
384
|
+
time?: InputMaybe<SortOrder>;
|
|
385
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
386
|
+
txid?: InputMaybe<SortOrder>;
|
|
387
|
+
};
|
|
388
|
+
export type AttestationOrderByWithRelationInput = {
|
|
389
|
+
attester?: InputMaybe<SortOrder>;
|
|
390
|
+
data?: InputMaybe<SortOrder>;
|
|
391
|
+
decodedDataJson?: InputMaybe<SortOrder>;
|
|
392
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
393
|
+
id?: InputMaybe<SortOrder>;
|
|
394
|
+
ipfsHash?: InputMaybe<SortOrder>;
|
|
395
|
+
isOffchain?: InputMaybe<SortOrder>;
|
|
396
|
+
recipient?: InputMaybe<SortOrder>;
|
|
397
|
+
refUID?: InputMaybe<SortOrder>;
|
|
398
|
+
revocable?: InputMaybe<SortOrder>;
|
|
399
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
400
|
+
revoked?: InputMaybe<SortOrder>;
|
|
401
|
+
schema?: InputMaybe<SchemaOrderByWithRelationInput>;
|
|
402
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
403
|
+
time?: InputMaybe<SortOrder>;
|
|
404
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
405
|
+
txid?: InputMaybe<SortOrder>;
|
|
406
|
+
};
|
|
407
|
+
export declare enum AttestationScalarFieldEnum {
|
|
408
|
+
Attester = "attester",
|
|
409
|
+
Data = "data",
|
|
410
|
+
DecodedDataJson = "decodedDataJson",
|
|
411
|
+
ExpirationTime = "expirationTime",
|
|
412
|
+
Id = "id",
|
|
413
|
+
IpfsHash = "ipfsHash",
|
|
414
|
+
IsOffchain = "isOffchain",
|
|
415
|
+
Recipient = "recipient",
|
|
416
|
+
RefUid = "refUID",
|
|
417
|
+
Revocable = "revocable",
|
|
418
|
+
RevocationTime = "revocationTime",
|
|
419
|
+
Revoked = "revoked",
|
|
420
|
+
SchemaId = "schemaId",
|
|
421
|
+
Time = "time",
|
|
422
|
+
TimeCreated = "timeCreated",
|
|
423
|
+
Txid = "txid"
|
|
424
|
+
}
|
|
425
|
+
export type AttestationScalarWhereInput = {
|
|
426
|
+
AND?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
427
|
+
NOT?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
428
|
+
OR?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
429
|
+
attester?: InputMaybe<StringFilter>;
|
|
430
|
+
data?: InputMaybe<StringFilter>;
|
|
431
|
+
decodedDataJson?: InputMaybe<StringFilter>;
|
|
432
|
+
expirationTime?: InputMaybe<IntFilter>;
|
|
433
|
+
id?: InputMaybe<StringFilter>;
|
|
434
|
+
ipfsHash?: InputMaybe<StringFilter>;
|
|
435
|
+
isOffchain?: InputMaybe<BoolFilter>;
|
|
436
|
+
recipient?: InputMaybe<StringFilter>;
|
|
437
|
+
refUID?: InputMaybe<StringFilter>;
|
|
438
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
439
|
+
revocationTime?: InputMaybe<IntFilter>;
|
|
440
|
+
revoked?: InputMaybe<BoolFilter>;
|
|
441
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
442
|
+
time?: InputMaybe<IntFilter>;
|
|
443
|
+
timeCreated?: InputMaybe<IntFilter>;
|
|
444
|
+
txid?: InputMaybe<StringFilter>;
|
|
445
|
+
};
|
|
446
|
+
export type AttestationScalarWhereWithAggregatesInput = {
|
|
447
|
+
AND?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
448
|
+
NOT?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
449
|
+
OR?: InputMaybe<Array<AttestationScalarWhereWithAggregatesInput>>;
|
|
450
|
+
attester?: InputMaybe<StringWithAggregatesFilter>;
|
|
451
|
+
data?: InputMaybe<StringWithAggregatesFilter>;
|
|
452
|
+
decodedDataJson?: InputMaybe<StringWithAggregatesFilter>;
|
|
453
|
+
expirationTime?: InputMaybe<IntWithAggregatesFilter>;
|
|
454
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
455
|
+
ipfsHash?: InputMaybe<StringWithAggregatesFilter>;
|
|
456
|
+
isOffchain?: InputMaybe<BoolWithAggregatesFilter>;
|
|
457
|
+
recipient?: InputMaybe<StringWithAggregatesFilter>;
|
|
458
|
+
refUID?: InputMaybe<StringWithAggregatesFilter>;
|
|
459
|
+
revocable?: InputMaybe<BoolWithAggregatesFilter>;
|
|
460
|
+
revocationTime?: InputMaybe<IntWithAggregatesFilter>;
|
|
461
|
+
revoked?: InputMaybe<BoolWithAggregatesFilter>;
|
|
462
|
+
schemaId?: InputMaybe<StringWithAggregatesFilter>;
|
|
463
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
464
|
+
timeCreated?: InputMaybe<IntWithAggregatesFilter>;
|
|
465
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
466
|
+
};
|
|
467
|
+
export type AttestationSumAggregate = {
|
|
468
|
+
__typename?: 'AttestationSumAggregate';
|
|
469
|
+
expirationTime?: Maybe<Scalars['Int']['output']>;
|
|
470
|
+
revocationTime?: Maybe<Scalars['Int']['output']>;
|
|
471
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
472
|
+
timeCreated?: Maybe<Scalars['Int']['output']>;
|
|
473
|
+
};
|
|
474
|
+
export type AttestationSumOrderByAggregateInput = {
|
|
475
|
+
expirationTime?: InputMaybe<SortOrder>;
|
|
476
|
+
revocationTime?: InputMaybe<SortOrder>;
|
|
477
|
+
time?: InputMaybe<SortOrder>;
|
|
478
|
+
timeCreated?: InputMaybe<SortOrder>;
|
|
479
|
+
};
|
|
480
|
+
export type AttestationUpdateInput = {
|
|
481
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
482
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
483
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
484
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
485
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
486
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
487
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
488
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
489
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
490
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
491
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
492
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
493
|
+
schema?: InputMaybe<SchemaUpdateOneRequiredWithoutAttestationsNestedInput>;
|
|
494
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
495
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
496
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
497
|
+
};
|
|
498
|
+
export type AttestationUpdateManyMutationInput = {
|
|
499
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
500
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
501
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
502
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
503
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
504
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
505
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
506
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
507
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
508
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
509
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
510
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
511
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
512
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
513
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
514
|
+
};
|
|
515
|
+
export type AttestationUpdateManyWithWhereWithoutSchemaInput = {
|
|
516
|
+
data: AttestationUpdateManyMutationInput;
|
|
517
|
+
where: AttestationScalarWhereInput;
|
|
518
|
+
};
|
|
519
|
+
export type AttestationUpdateManyWithoutSchemaNestedInput = {
|
|
520
|
+
connect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
521
|
+
connectOrCreate?: InputMaybe<Array<AttestationCreateOrConnectWithoutSchemaInput>>;
|
|
522
|
+
create?: InputMaybe<Array<AttestationCreateWithoutSchemaInput>>;
|
|
523
|
+
createMany?: InputMaybe<AttestationCreateManySchemaInputEnvelope>;
|
|
524
|
+
delete?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
525
|
+
deleteMany?: InputMaybe<Array<AttestationScalarWhereInput>>;
|
|
526
|
+
disconnect?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
527
|
+
set?: InputMaybe<Array<AttestationWhereUniqueInput>>;
|
|
528
|
+
update?: InputMaybe<Array<AttestationUpdateWithWhereUniqueWithoutSchemaInput>>;
|
|
529
|
+
updateMany?: InputMaybe<Array<AttestationUpdateManyWithWhereWithoutSchemaInput>>;
|
|
530
|
+
upsert?: InputMaybe<Array<AttestationUpsertWithWhereUniqueWithoutSchemaInput>>;
|
|
531
|
+
};
|
|
532
|
+
export type AttestationUpdateWithWhereUniqueWithoutSchemaInput = {
|
|
533
|
+
data: AttestationUpdateWithoutSchemaInput;
|
|
534
|
+
where: AttestationWhereUniqueInput;
|
|
535
|
+
};
|
|
536
|
+
export type AttestationUpdateWithoutSchemaInput = {
|
|
537
|
+
attester?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
538
|
+
data?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
539
|
+
decodedDataJson?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
540
|
+
expirationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
541
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
542
|
+
ipfsHash?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
543
|
+
isOffchain?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
544
|
+
recipient?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
545
|
+
refUID?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
546
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
547
|
+
revocationTime?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
548
|
+
revoked?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
549
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
550
|
+
timeCreated?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
551
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
552
|
+
};
|
|
553
|
+
export type AttestationUpsertWithWhereUniqueWithoutSchemaInput = {
|
|
554
|
+
create: AttestationCreateWithoutSchemaInput;
|
|
555
|
+
update: AttestationUpdateWithoutSchemaInput;
|
|
556
|
+
where: AttestationWhereUniqueInput;
|
|
557
|
+
};
|
|
558
|
+
export type AttestationWhereInput = {
|
|
559
|
+
AND?: InputMaybe<Array<AttestationWhereInput>>;
|
|
560
|
+
NOT?: InputMaybe<Array<AttestationWhereInput>>;
|
|
561
|
+
OR?: InputMaybe<Array<AttestationWhereInput>>;
|
|
562
|
+
attester?: InputMaybe<StringFilter>;
|
|
563
|
+
data?: InputMaybe<StringFilter>;
|
|
564
|
+
decodedDataJson?: InputMaybe<StringFilter>;
|
|
565
|
+
expirationTime?: InputMaybe<IntFilter>;
|
|
566
|
+
id?: InputMaybe<StringFilter>;
|
|
567
|
+
ipfsHash?: InputMaybe<StringFilter>;
|
|
568
|
+
isOffchain?: InputMaybe<BoolFilter>;
|
|
569
|
+
recipient?: InputMaybe<StringFilter>;
|
|
570
|
+
refUID?: InputMaybe<StringFilter>;
|
|
571
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
572
|
+
revocationTime?: InputMaybe<IntFilter>;
|
|
573
|
+
revoked?: InputMaybe<BoolFilter>;
|
|
574
|
+
schema?: InputMaybe<SchemaRelationFilter>;
|
|
575
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
576
|
+
time?: InputMaybe<IntFilter>;
|
|
577
|
+
timeCreated?: InputMaybe<IntFilter>;
|
|
578
|
+
txid?: InputMaybe<StringFilter>;
|
|
579
|
+
};
|
|
580
|
+
export type AttestationWhereUniqueInput = {
|
|
581
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
582
|
+
};
|
|
583
|
+
export type BoolFieldUpdateOperationsInput = {
|
|
584
|
+
set?: InputMaybe<Scalars['Boolean']['input']>;
|
|
585
|
+
};
|
|
586
|
+
export type BoolFilter = {
|
|
587
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
588
|
+
not?: InputMaybe<NestedBoolFilter>;
|
|
589
|
+
};
|
|
590
|
+
export type BoolWithAggregatesFilter = {
|
|
591
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
592
|
+
_max?: InputMaybe<NestedBoolFilter>;
|
|
593
|
+
_min?: InputMaybe<NestedBoolFilter>;
|
|
594
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
595
|
+
not?: InputMaybe<NestedBoolWithAggregatesFilter>;
|
|
596
|
+
};
|
|
597
|
+
export type EnsName = {
|
|
598
|
+
__typename?: 'EnsName';
|
|
599
|
+
id: Scalars['String']['output'];
|
|
600
|
+
name: Scalars['String']['output'];
|
|
601
|
+
timestamp: Scalars['Int']['output'];
|
|
602
|
+
};
|
|
603
|
+
export type EnsNameAvgAggregate = {
|
|
604
|
+
__typename?: 'EnsNameAvgAggregate';
|
|
605
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
606
|
+
};
|
|
607
|
+
export type EnsNameAvgOrderByAggregateInput = {
|
|
608
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
609
|
+
};
|
|
610
|
+
export type EnsNameCountAggregate = {
|
|
611
|
+
__typename?: 'EnsNameCountAggregate';
|
|
612
|
+
_all: Scalars['Int']['output'];
|
|
613
|
+
id: Scalars['Int']['output'];
|
|
614
|
+
name: Scalars['Int']['output'];
|
|
615
|
+
timestamp: Scalars['Int']['output'];
|
|
616
|
+
};
|
|
617
|
+
export type EnsNameCountOrderByAggregateInput = {
|
|
618
|
+
id?: InputMaybe<SortOrder>;
|
|
619
|
+
name?: InputMaybe<SortOrder>;
|
|
620
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
621
|
+
};
|
|
622
|
+
export type EnsNameCreateInput = {
|
|
623
|
+
id: Scalars['String']['input'];
|
|
624
|
+
name: Scalars['String']['input'];
|
|
625
|
+
timestamp: Scalars['Int']['input'];
|
|
626
|
+
};
|
|
627
|
+
export type EnsNameCreateManyInput = {
|
|
628
|
+
id: Scalars['String']['input'];
|
|
629
|
+
name: Scalars['String']['input'];
|
|
630
|
+
timestamp: Scalars['Int']['input'];
|
|
631
|
+
};
|
|
632
|
+
export type EnsNameGroupBy = {
|
|
633
|
+
__typename?: 'EnsNameGroupBy';
|
|
634
|
+
_avg?: Maybe<EnsNameAvgAggregate>;
|
|
635
|
+
_count?: Maybe<EnsNameCountAggregate>;
|
|
636
|
+
_max?: Maybe<EnsNameMaxAggregate>;
|
|
637
|
+
_min?: Maybe<EnsNameMinAggregate>;
|
|
638
|
+
_sum?: Maybe<EnsNameSumAggregate>;
|
|
639
|
+
id: Scalars['String']['output'];
|
|
640
|
+
name: Scalars['String']['output'];
|
|
641
|
+
timestamp: Scalars['Int']['output'];
|
|
642
|
+
};
|
|
643
|
+
export type EnsNameMaxAggregate = {
|
|
644
|
+
__typename?: 'EnsNameMaxAggregate';
|
|
645
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
646
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
647
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
648
|
+
};
|
|
649
|
+
export type EnsNameMaxOrderByAggregateInput = {
|
|
650
|
+
id?: InputMaybe<SortOrder>;
|
|
651
|
+
name?: InputMaybe<SortOrder>;
|
|
652
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
653
|
+
};
|
|
654
|
+
export type EnsNameMinAggregate = {
|
|
655
|
+
__typename?: 'EnsNameMinAggregate';
|
|
656
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
657
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
658
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
659
|
+
};
|
|
660
|
+
export type EnsNameMinOrderByAggregateInput = {
|
|
661
|
+
id?: InputMaybe<SortOrder>;
|
|
662
|
+
name?: InputMaybe<SortOrder>;
|
|
663
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
664
|
+
};
|
|
665
|
+
export type EnsNameOrderByWithAggregationInput = {
|
|
666
|
+
_avg?: InputMaybe<EnsNameAvgOrderByAggregateInput>;
|
|
667
|
+
_count?: InputMaybe<EnsNameCountOrderByAggregateInput>;
|
|
668
|
+
_max?: InputMaybe<EnsNameMaxOrderByAggregateInput>;
|
|
669
|
+
_min?: InputMaybe<EnsNameMinOrderByAggregateInput>;
|
|
670
|
+
_sum?: InputMaybe<EnsNameSumOrderByAggregateInput>;
|
|
671
|
+
id?: InputMaybe<SortOrder>;
|
|
672
|
+
name?: InputMaybe<SortOrder>;
|
|
673
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
674
|
+
};
|
|
675
|
+
export type EnsNameOrderByWithRelationInput = {
|
|
676
|
+
id?: InputMaybe<SortOrder>;
|
|
677
|
+
name?: InputMaybe<SortOrder>;
|
|
678
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
679
|
+
};
|
|
680
|
+
export declare enum EnsNameScalarFieldEnum {
|
|
681
|
+
Id = "id",
|
|
682
|
+
Name = "name",
|
|
683
|
+
Timestamp = "timestamp"
|
|
684
|
+
}
|
|
685
|
+
export type EnsNameScalarWhereWithAggregatesInput = {
|
|
686
|
+
AND?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
687
|
+
NOT?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
688
|
+
OR?: InputMaybe<Array<EnsNameScalarWhereWithAggregatesInput>>;
|
|
689
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
690
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
691
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
692
|
+
};
|
|
693
|
+
export type EnsNameSumAggregate = {
|
|
694
|
+
__typename?: 'EnsNameSumAggregate';
|
|
695
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
696
|
+
};
|
|
697
|
+
export type EnsNameSumOrderByAggregateInput = {
|
|
698
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
699
|
+
};
|
|
700
|
+
export type EnsNameUpdateInput = {
|
|
701
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
702
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
703
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
704
|
+
};
|
|
705
|
+
export type EnsNameUpdateManyMutationInput = {
|
|
706
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
707
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
708
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
709
|
+
};
|
|
710
|
+
export type EnsNameWhereInput = {
|
|
711
|
+
AND?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
712
|
+
NOT?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
713
|
+
OR?: InputMaybe<Array<EnsNameWhereInput>>;
|
|
714
|
+
id?: InputMaybe<StringFilter>;
|
|
715
|
+
name?: InputMaybe<StringFilter>;
|
|
716
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
717
|
+
};
|
|
718
|
+
export type EnsNameWhereUniqueInput = {
|
|
719
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
720
|
+
};
|
|
721
|
+
export type IntFieldUpdateOperationsInput = {
|
|
722
|
+
decrement?: InputMaybe<Scalars['Int']['input']>;
|
|
723
|
+
divide?: InputMaybe<Scalars['Int']['input']>;
|
|
724
|
+
increment?: InputMaybe<Scalars['Int']['input']>;
|
|
725
|
+
multiply?: InputMaybe<Scalars['Int']['input']>;
|
|
726
|
+
set?: InputMaybe<Scalars['Int']['input']>;
|
|
727
|
+
};
|
|
728
|
+
export type IntFilter = {
|
|
729
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
730
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
731
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
732
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
733
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
734
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
735
|
+
not?: InputMaybe<NestedIntFilter>;
|
|
736
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
737
|
+
};
|
|
738
|
+
export type IntWithAggregatesFilter = {
|
|
739
|
+
_avg?: InputMaybe<NestedFloatFilter>;
|
|
740
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
741
|
+
_max?: InputMaybe<NestedIntFilter>;
|
|
742
|
+
_min?: InputMaybe<NestedIntFilter>;
|
|
743
|
+
_sum?: InputMaybe<NestedIntFilter>;
|
|
744
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
745
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
746
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
747
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
748
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
749
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
750
|
+
not?: InputMaybe<NestedIntWithAggregatesFilter>;
|
|
751
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
752
|
+
};
|
|
753
|
+
export type Mutation = {
|
|
754
|
+
__typename?: 'Mutation';
|
|
755
|
+
createManyAttestation: AffectedRowsOutput;
|
|
756
|
+
createManyEnsName: AffectedRowsOutput;
|
|
757
|
+
createManyOffchainRevocation: AffectedRowsOutput;
|
|
758
|
+
createManySchema: AffectedRowsOutput;
|
|
759
|
+
createManySchemaName: AffectedRowsOutput;
|
|
760
|
+
createManyServiceStat: AffectedRowsOutput;
|
|
761
|
+
createManyTimestamp: AffectedRowsOutput;
|
|
762
|
+
createOneAttestation: Attestation;
|
|
763
|
+
createOneEnsName: EnsName;
|
|
764
|
+
createOneOffchainRevocation: OffchainRevocation;
|
|
765
|
+
createOneSchema: Schema;
|
|
766
|
+
createOneSchemaName: SchemaName;
|
|
767
|
+
createOneServiceStat: ServiceStat;
|
|
768
|
+
createOneTimestamp: Timestamp;
|
|
769
|
+
deleteManyAttestation: AffectedRowsOutput;
|
|
770
|
+
deleteManyEnsName: AffectedRowsOutput;
|
|
771
|
+
deleteManyOffchainRevocation: AffectedRowsOutput;
|
|
772
|
+
deleteManySchema: AffectedRowsOutput;
|
|
773
|
+
deleteManySchemaName: AffectedRowsOutput;
|
|
774
|
+
deleteManyServiceStat: AffectedRowsOutput;
|
|
775
|
+
deleteManyTimestamp: AffectedRowsOutput;
|
|
776
|
+
deleteOneAttestation?: Maybe<Attestation>;
|
|
777
|
+
deleteOneEnsName?: Maybe<EnsName>;
|
|
778
|
+
deleteOneOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
779
|
+
deleteOneSchema?: Maybe<Schema>;
|
|
780
|
+
deleteOneSchemaName?: Maybe<SchemaName>;
|
|
781
|
+
deleteOneServiceStat?: Maybe<ServiceStat>;
|
|
782
|
+
deleteOneTimestamp?: Maybe<Timestamp>;
|
|
783
|
+
updateManyAttestation: AffectedRowsOutput;
|
|
784
|
+
updateManyEnsName: AffectedRowsOutput;
|
|
785
|
+
updateManyOffchainRevocation: AffectedRowsOutput;
|
|
786
|
+
updateManySchema: AffectedRowsOutput;
|
|
787
|
+
updateManySchemaName: AffectedRowsOutput;
|
|
788
|
+
updateManyServiceStat: AffectedRowsOutput;
|
|
789
|
+
updateManyTimestamp: AffectedRowsOutput;
|
|
790
|
+
updateOneAttestation?: Maybe<Attestation>;
|
|
791
|
+
updateOneEnsName?: Maybe<EnsName>;
|
|
792
|
+
updateOneOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
793
|
+
updateOneSchema?: Maybe<Schema>;
|
|
794
|
+
updateOneSchemaName?: Maybe<SchemaName>;
|
|
795
|
+
updateOneServiceStat?: Maybe<ServiceStat>;
|
|
796
|
+
updateOneTimestamp?: Maybe<Timestamp>;
|
|
797
|
+
upsertOneAttestation: Attestation;
|
|
798
|
+
upsertOneEnsName: EnsName;
|
|
799
|
+
upsertOneOffchainRevocation: OffchainRevocation;
|
|
800
|
+
upsertOneSchema: Schema;
|
|
801
|
+
upsertOneSchemaName: SchemaName;
|
|
802
|
+
upsertOneServiceStat: ServiceStat;
|
|
803
|
+
upsertOneTimestamp: Timestamp;
|
|
804
|
+
};
|
|
805
|
+
export type MutationCreateManyAttestationArgs = {
|
|
806
|
+
data: Array<AttestationCreateManyInput>;
|
|
807
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
808
|
+
};
|
|
809
|
+
export type MutationCreateManyEnsNameArgs = {
|
|
810
|
+
data: Array<EnsNameCreateManyInput>;
|
|
811
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
812
|
+
};
|
|
813
|
+
export type MutationCreateManyOffchainRevocationArgs = {
|
|
814
|
+
data: Array<OffchainRevocationCreateManyInput>;
|
|
815
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
816
|
+
};
|
|
817
|
+
export type MutationCreateManySchemaArgs = {
|
|
818
|
+
data: Array<SchemaCreateManyInput>;
|
|
819
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
820
|
+
};
|
|
821
|
+
export type MutationCreateManySchemaNameArgs = {
|
|
822
|
+
data: Array<SchemaNameCreateManyInput>;
|
|
823
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
824
|
+
};
|
|
825
|
+
export type MutationCreateManyServiceStatArgs = {
|
|
826
|
+
data: Array<ServiceStatCreateManyInput>;
|
|
827
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
828
|
+
};
|
|
829
|
+
export type MutationCreateManyTimestampArgs = {
|
|
830
|
+
data: Array<TimestampCreateManyInput>;
|
|
831
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
832
|
+
};
|
|
833
|
+
export type MutationCreateOneAttestationArgs = {
|
|
834
|
+
data: AttestationCreateInput;
|
|
835
|
+
};
|
|
836
|
+
export type MutationCreateOneEnsNameArgs = {
|
|
837
|
+
data: EnsNameCreateInput;
|
|
838
|
+
};
|
|
839
|
+
export type MutationCreateOneOffchainRevocationArgs = {
|
|
840
|
+
data: OffchainRevocationCreateInput;
|
|
841
|
+
};
|
|
842
|
+
export type MutationCreateOneSchemaArgs = {
|
|
843
|
+
data: SchemaCreateInput;
|
|
844
|
+
};
|
|
845
|
+
export type MutationCreateOneSchemaNameArgs = {
|
|
846
|
+
data: SchemaNameCreateInput;
|
|
847
|
+
};
|
|
848
|
+
export type MutationCreateOneServiceStatArgs = {
|
|
849
|
+
data: ServiceStatCreateInput;
|
|
850
|
+
};
|
|
851
|
+
export type MutationCreateOneTimestampArgs = {
|
|
852
|
+
data: TimestampCreateInput;
|
|
853
|
+
};
|
|
854
|
+
export type MutationDeleteManyAttestationArgs = {
|
|
855
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
856
|
+
};
|
|
857
|
+
export type MutationDeleteManyEnsNameArgs = {
|
|
858
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
859
|
+
};
|
|
860
|
+
export type MutationDeleteManyOffchainRevocationArgs = {
|
|
861
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
862
|
+
};
|
|
863
|
+
export type MutationDeleteManySchemaArgs = {
|
|
864
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
865
|
+
};
|
|
866
|
+
export type MutationDeleteManySchemaNameArgs = {
|
|
867
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
868
|
+
};
|
|
869
|
+
export type MutationDeleteManyServiceStatArgs = {
|
|
870
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
871
|
+
};
|
|
872
|
+
export type MutationDeleteManyTimestampArgs = {
|
|
873
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
874
|
+
};
|
|
875
|
+
export type MutationDeleteOneAttestationArgs = {
|
|
876
|
+
where: AttestationWhereUniqueInput;
|
|
877
|
+
};
|
|
878
|
+
export type MutationDeleteOneEnsNameArgs = {
|
|
879
|
+
where: EnsNameWhereUniqueInput;
|
|
880
|
+
};
|
|
881
|
+
export type MutationDeleteOneOffchainRevocationArgs = {
|
|
882
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
883
|
+
};
|
|
884
|
+
export type MutationDeleteOneSchemaArgs = {
|
|
885
|
+
where: SchemaWhereUniqueInput;
|
|
886
|
+
};
|
|
887
|
+
export type MutationDeleteOneSchemaNameArgs = {
|
|
888
|
+
where: SchemaNameWhereUniqueInput;
|
|
889
|
+
};
|
|
890
|
+
export type MutationDeleteOneServiceStatArgs = {
|
|
891
|
+
where: ServiceStatWhereUniqueInput;
|
|
892
|
+
};
|
|
893
|
+
export type MutationDeleteOneTimestampArgs = {
|
|
894
|
+
where: TimestampWhereUniqueInput;
|
|
895
|
+
};
|
|
896
|
+
export type MutationUpdateManyAttestationArgs = {
|
|
897
|
+
data: AttestationUpdateManyMutationInput;
|
|
898
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
899
|
+
};
|
|
900
|
+
export type MutationUpdateManyEnsNameArgs = {
|
|
901
|
+
data: EnsNameUpdateManyMutationInput;
|
|
902
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
903
|
+
};
|
|
904
|
+
export type MutationUpdateManyOffchainRevocationArgs = {
|
|
905
|
+
data: OffchainRevocationUpdateManyMutationInput;
|
|
906
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
907
|
+
};
|
|
908
|
+
export type MutationUpdateManySchemaArgs = {
|
|
909
|
+
data: SchemaUpdateManyMutationInput;
|
|
910
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
911
|
+
};
|
|
912
|
+
export type MutationUpdateManySchemaNameArgs = {
|
|
913
|
+
data: SchemaNameUpdateManyMutationInput;
|
|
914
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
915
|
+
};
|
|
916
|
+
export type MutationUpdateManyServiceStatArgs = {
|
|
917
|
+
data: ServiceStatUpdateManyMutationInput;
|
|
918
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
919
|
+
};
|
|
920
|
+
export type MutationUpdateManyTimestampArgs = {
|
|
921
|
+
data: TimestampUpdateManyMutationInput;
|
|
922
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
923
|
+
};
|
|
924
|
+
export type MutationUpdateOneAttestationArgs = {
|
|
925
|
+
data: AttestationUpdateInput;
|
|
926
|
+
where: AttestationWhereUniqueInput;
|
|
927
|
+
};
|
|
928
|
+
export type MutationUpdateOneEnsNameArgs = {
|
|
929
|
+
data: EnsNameUpdateInput;
|
|
930
|
+
where: EnsNameWhereUniqueInput;
|
|
931
|
+
};
|
|
932
|
+
export type MutationUpdateOneOffchainRevocationArgs = {
|
|
933
|
+
data: OffchainRevocationUpdateInput;
|
|
934
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
935
|
+
};
|
|
936
|
+
export type MutationUpdateOneSchemaArgs = {
|
|
937
|
+
data: SchemaUpdateInput;
|
|
938
|
+
where: SchemaWhereUniqueInput;
|
|
939
|
+
};
|
|
940
|
+
export type MutationUpdateOneSchemaNameArgs = {
|
|
941
|
+
data: SchemaNameUpdateInput;
|
|
942
|
+
where: SchemaNameWhereUniqueInput;
|
|
943
|
+
};
|
|
944
|
+
export type MutationUpdateOneServiceStatArgs = {
|
|
945
|
+
data: ServiceStatUpdateInput;
|
|
946
|
+
where: ServiceStatWhereUniqueInput;
|
|
947
|
+
};
|
|
948
|
+
export type MutationUpdateOneTimestampArgs = {
|
|
949
|
+
data: TimestampUpdateInput;
|
|
950
|
+
where: TimestampWhereUniqueInput;
|
|
951
|
+
};
|
|
952
|
+
export type MutationUpsertOneAttestationArgs = {
|
|
953
|
+
create: AttestationCreateInput;
|
|
954
|
+
update: AttestationUpdateInput;
|
|
955
|
+
where: AttestationWhereUniqueInput;
|
|
956
|
+
};
|
|
957
|
+
export type MutationUpsertOneEnsNameArgs = {
|
|
958
|
+
create: EnsNameCreateInput;
|
|
959
|
+
update: EnsNameUpdateInput;
|
|
960
|
+
where: EnsNameWhereUniqueInput;
|
|
961
|
+
};
|
|
962
|
+
export type MutationUpsertOneOffchainRevocationArgs = {
|
|
963
|
+
create: OffchainRevocationCreateInput;
|
|
964
|
+
update: OffchainRevocationUpdateInput;
|
|
965
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
966
|
+
};
|
|
967
|
+
export type MutationUpsertOneSchemaArgs = {
|
|
968
|
+
create: SchemaCreateInput;
|
|
969
|
+
update: SchemaUpdateInput;
|
|
970
|
+
where: SchemaWhereUniqueInput;
|
|
971
|
+
};
|
|
972
|
+
export type MutationUpsertOneSchemaNameArgs = {
|
|
973
|
+
create: SchemaNameCreateInput;
|
|
974
|
+
update: SchemaNameUpdateInput;
|
|
975
|
+
where: SchemaNameWhereUniqueInput;
|
|
976
|
+
};
|
|
977
|
+
export type MutationUpsertOneServiceStatArgs = {
|
|
978
|
+
create: ServiceStatCreateInput;
|
|
979
|
+
update: ServiceStatUpdateInput;
|
|
980
|
+
where: ServiceStatWhereUniqueInput;
|
|
981
|
+
};
|
|
982
|
+
export type MutationUpsertOneTimestampArgs = {
|
|
983
|
+
create: TimestampCreateInput;
|
|
984
|
+
update: TimestampUpdateInput;
|
|
985
|
+
where: TimestampWhereUniqueInput;
|
|
986
|
+
};
|
|
987
|
+
export type NestedBoolFilter = {
|
|
988
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
989
|
+
not?: InputMaybe<NestedBoolFilter>;
|
|
990
|
+
};
|
|
991
|
+
export type NestedBoolWithAggregatesFilter = {
|
|
992
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
993
|
+
_max?: InputMaybe<NestedBoolFilter>;
|
|
994
|
+
_min?: InputMaybe<NestedBoolFilter>;
|
|
995
|
+
equals?: InputMaybe<Scalars['Boolean']['input']>;
|
|
996
|
+
not?: InputMaybe<NestedBoolWithAggregatesFilter>;
|
|
997
|
+
};
|
|
998
|
+
export type NestedFloatFilter = {
|
|
999
|
+
equals?: InputMaybe<Scalars['Float']['input']>;
|
|
1000
|
+
gt?: InputMaybe<Scalars['Float']['input']>;
|
|
1001
|
+
gte?: InputMaybe<Scalars['Float']['input']>;
|
|
1002
|
+
in?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
1003
|
+
lt?: InputMaybe<Scalars['Float']['input']>;
|
|
1004
|
+
lte?: InputMaybe<Scalars['Float']['input']>;
|
|
1005
|
+
not?: InputMaybe<NestedFloatFilter>;
|
|
1006
|
+
notIn?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
1007
|
+
};
|
|
1008
|
+
export type NestedIntFilter = {
|
|
1009
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
1010
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1011
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1012
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1013
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1014
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1015
|
+
not?: InputMaybe<NestedIntFilter>;
|
|
1016
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1017
|
+
};
|
|
1018
|
+
export type NestedIntWithAggregatesFilter = {
|
|
1019
|
+
_avg?: InputMaybe<NestedFloatFilter>;
|
|
1020
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
1021
|
+
_max?: InputMaybe<NestedIntFilter>;
|
|
1022
|
+
_min?: InputMaybe<NestedIntFilter>;
|
|
1023
|
+
_sum?: InputMaybe<NestedIntFilter>;
|
|
1024
|
+
equals?: InputMaybe<Scalars['Int']['input']>;
|
|
1025
|
+
gt?: InputMaybe<Scalars['Int']['input']>;
|
|
1026
|
+
gte?: InputMaybe<Scalars['Int']['input']>;
|
|
1027
|
+
in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1028
|
+
lt?: InputMaybe<Scalars['Int']['input']>;
|
|
1029
|
+
lte?: InputMaybe<Scalars['Int']['input']>;
|
|
1030
|
+
not?: InputMaybe<NestedIntWithAggregatesFilter>;
|
|
1031
|
+
notIn?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
1032
|
+
};
|
|
1033
|
+
export type NestedStringFilter = {
|
|
1034
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
1035
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1036
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
1037
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
1038
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
1039
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1040
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
1041
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
1042
|
+
not?: InputMaybe<NestedStringFilter>;
|
|
1043
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1044
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1045
|
+
};
|
|
1046
|
+
export type NestedStringWithAggregatesFilter = {
|
|
1047
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
1048
|
+
_max?: InputMaybe<NestedStringFilter>;
|
|
1049
|
+
_min?: InputMaybe<NestedStringFilter>;
|
|
1050
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
1051
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1052
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
1053
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
1054
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
1055
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1056
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
1057
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
1058
|
+
not?: InputMaybe<NestedStringWithAggregatesFilter>;
|
|
1059
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1060
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1061
|
+
};
|
|
1062
|
+
export type OffchainRevocation = {
|
|
1063
|
+
__typename?: 'OffchainRevocation';
|
|
1064
|
+
from: Scalars['String']['output'];
|
|
1065
|
+
id: Scalars['String']['output'];
|
|
1066
|
+
timestamp: Scalars['Int']['output'];
|
|
1067
|
+
txid: Scalars['String']['output'];
|
|
1068
|
+
uid: Scalars['String']['output'];
|
|
1069
|
+
};
|
|
1070
|
+
export type OffchainRevocationAvgAggregate = {
|
|
1071
|
+
__typename?: 'OffchainRevocationAvgAggregate';
|
|
1072
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
1073
|
+
};
|
|
1074
|
+
export type OffchainRevocationAvgOrderByAggregateInput = {
|
|
1075
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1076
|
+
};
|
|
1077
|
+
export type OffchainRevocationCountAggregate = {
|
|
1078
|
+
__typename?: 'OffchainRevocationCountAggregate';
|
|
1079
|
+
_all: Scalars['Int']['output'];
|
|
1080
|
+
from: Scalars['Int']['output'];
|
|
1081
|
+
id: Scalars['Int']['output'];
|
|
1082
|
+
timestamp: Scalars['Int']['output'];
|
|
1083
|
+
txid: Scalars['Int']['output'];
|
|
1084
|
+
uid: Scalars['Int']['output'];
|
|
1085
|
+
};
|
|
1086
|
+
export type OffchainRevocationCountOrderByAggregateInput = {
|
|
1087
|
+
from?: InputMaybe<SortOrder>;
|
|
1088
|
+
id?: InputMaybe<SortOrder>;
|
|
1089
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1090
|
+
txid?: InputMaybe<SortOrder>;
|
|
1091
|
+
uid?: InputMaybe<SortOrder>;
|
|
1092
|
+
};
|
|
1093
|
+
export type OffchainRevocationCreateInput = {
|
|
1094
|
+
from: Scalars['String']['input'];
|
|
1095
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1096
|
+
timestamp: Scalars['Int']['input'];
|
|
1097
|
+
txid: Scalars['String']['input'];
|
|
1098
|
+
uid: Scalars['String']['input'];
|
|
1099
|
+
};
|
|
1100
|
+
export type OffchainRevocationCreateManyInput = {
|
|
1101
|
+
from: Scalars['String']['input'];
|
|
1102
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1103
|
+
timestamp: Scalars['Int']['input'];
|
|
1104
|
+
txid: Scalars['String']['input'];
|
|
1105
|
+
uid: Scalars['String']['input'];
|
|
1106
|
+
};
|
|
1107
|
+
export type OffchainRevocationGroupBy = {
|
|
1108
|
+
__typename?: 'OffchainRevocationGroupBy';
|
|
1109
|
+
_avg?: Maybe<OffchainRevocationAvgAggregate>;
|
|
1110
|
+
_count?: Maybe<OffchainRevocationCountAggregate>;
|
|
1111
|
+
_max?: Maybe<OffchainRevocationMaxAggregate>;
|
|
1112
|
+
_min?: Maybe<OffchainRevocationMinAggregate>;
|
|
1113
|
+
_sum?: Maybe<OffchainRevocationSumAggregate>;
|
|
1114
|
+
from: Scalars['String']['output'];
|
|
1115
|
+
id: Scalars['String']['output'];
|
|
1116
|
+
timestamp: Scalars['Int']['output'];
|
|
1117
|
+
txid: Scalars['String']['output'];
|
|
1118
|
+
uid: Scalars['String']['output'];
|
|
1119
|
+
};
|
|
1120
|
+
export type OffchainRevocationMaxAggregate = {
|
|
1121
|
+
__typename?: 'OffchainRevocationMaxAggregate';
|
|
1122
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
1123
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1124
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1125
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1126
|
+
uid?: Maybe<Scalars['String']['output']>;
|
|
1127
|
+
};
|
|
1128
|
+
export type OffchainRevocationMaxOrderByAggregateInput = {
|
|
1129
|
+
from?: InputMaybe<SortOrder>;
|
|
1130
|
+
id?: InputMaybe<SortOrder>;
|
|
1131
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1132
|
+
txid?: InputMaybe<SortOrder>;
|
|
1133
|
+
uid?: InputMaybe<SortOrder>;
|
|
1134
|
+
};
|
|
1135
|
+
export type OffchainRevocationMinAggregate = {
|
|
1136
|
+
__typename?: 'OffchainRevocationMinAggregate';
|
|
1137
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
1138
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1139
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1140
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1141
|
+
uid?: Maybe<Scalars['String']['output']>;
|
|
1142
|
+
};
|
|
1143
|
+
export type OffchainRevocationMinOrderByAggregateInput = {
|
|
1144
|
+
from?: InputMaybe<SortOrder>;
|
|
1145
|
+
id?: InputMaybe<SortOrder>;
|
|
1146
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1147
|
+
txid?: InputMaybe<SortOrder>;
|
|
1148
|
+
uid?: InputMaybe<SortOrder>;
|
|
1149
|
+
};
|
|
1150
|
+
export type OffchainRevocationOrderByWithAggregationInput = {
|
|
1151
|
+
_avg?: InputMaybe<OffchainRevocationAvgOrderByAggregateInput>;
|
|
1152
|
+
_count?: InputMaybe<OffchainRevocationCountOrderByAggregateInput>;
|
|
1153
|
+
_max?: InputMaybe<OffchainRevocationMaxOrderByAggregateInput>;
|
|
1154
|
+
_min?: InputMaybe<OffchainRevocationMinOrderByAggregateInput>;
|
|
1155
|
+
_sum?: InputMaybe<OffchainRevocationSumOrderByAggregateInput>;
|
|
1156
|
+
from?: InputMaybe<SortOrder>;
|
|
1157
|
+
id?: InputMaybe<SortOrder>;
|
|
1158
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1159
|
+
txid?: InputMaybe<SortOrder>;
|
|
1160
|
+
uid?: InputMaybe<SortOrder>;
|
|
1161
|
+
};
|
|
1162
|
+
export type OffchainRevocationOrderByWithRelationInput = {
|
|
1163
|
+
from?: InputMaybe<SortOrder>;
|
|
1164
|
+
id?: InputMaybe<SortOrder>;
|
|
1165
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1166
|
+
txid?: InputMaybe<SortOrder>;
|
|
1167
|
+
uid?: InputMaybe<SortOrder>;
|
|
1168
|
+
};
|
|
1169
|
+
export declare enum OffchainRevocationScalarFieldEnum {
|
|
1170
|
+
From = "from",
|
|
1171
|
+
Id = "id",
|
|
1172
|
+
Timestamp = "timestamp",
|
|
1173
|
+
Txid = "txid",
|
|
1174
|
+
Uid = "uid"
|
|
1175
|
+
}
|
|
1176
|
+
export type OffchainRevocationScalarWhereWithAggregatesInput = {
|
|
1177
|
+
AND?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1178
|
+
NOT?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1179
|
+
OR?: InputMaybe<Array<OffchainRevocationScalarWhereWithAggregatesInput>>;
|
|
1180
|
+
from?: InputMaybe<StringWithAggregatesFilter>;
|
|
1181
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
1182
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
1183
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
1184
|
+
uid?: InputMaybe<StringWithAggregatesFilter>;
|
|
1185
|
+
};
|
|
1186
|
+
export type OffchainRevocationSumAggregate = {
|
|
1187
|
+
__typename?: 'OffchainRevocationSumAggregate';
|
|
1188
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
1189
|
+
};
|
|
1190
|
+
export type OffchainRevocationSumOrderByAggregateInput = {
|
|
1191
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
1192
|
+
};
|
|
1193
|
+
export type OffchainRevocationUpdateInput = {
|
|
1194
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1195
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1196
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1197
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1198
|
+
uid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1199
|
+
};
|
|
1200
|
+
export type OffchainRevocationUpdateManyMutationInput = {
|
|
1201
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1202
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1203
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1204
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1205
|
+
uid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1206
|
+
};
|
|
1207
|
+
export type OffchainRevocationWhereInput = {
|
|
1208
|
+
AND?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1209
|
+
NOT?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1210
|
+
OR?: InputMaybe<Array<OffchainRevocationWhereInput>>;
|
|
1211
|
+
from?: InputMaybe<StringFilter>;
|
|
1212
|
+
id?: InputMaybe<StringFilter>;
|
|
1213
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
1214
|
+
txid?: InputMaybe<StringFilter>;
|
|
1215
|
+
uid?: InputMaybe<StringFilter>;
|
|
1216
|
+
};
|
|
1217
|
+
export type OffchainRevocationWhereUniqueInput = {
|
|
1218
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1219
|
+
};
|
|
1220
|
+
export type Query = {
|
|
1221
|
+
__typename?: 'Query';
|
|
1222
|
+
aggregateAttestation: AggregateAttestation;
|
|
1223
|
+
aggregateEnsName: AggregateEnsName;
|
|
1224
|
+
aggregateOffchainRevocation: AggregateOffchainRevocation;
|
|
1225
|
+
aggregateSchema: AggregateSchema;
|
|
1226
|
+
aggregateSchemaName: AggregateSchemaName;
|
|
1227
|
+
aggregateServiceStat: AggregateServiceStat;
|
|
1228
|
+
aggregateTimestamp: AggregateTimestamp;
|
|
1229
|
+
attestation?: Maybe<Attestation>;
|
|
1230
|
+
attestations: Array<Attestation>;
|
|
1231
|
+
ensName?: Maybe<EnsName>;
|
|
1232
|
+
ensNames: Array<EnsName>;
|
|
1233
|
+
findFirstAttestation?: Maybe<Attestation>;
|
|
1234
|
+
findFirstAttestationOrThrow?: Maybe<Attestation>;
|
|
1235
|
+
findFirstEnsName?: Maybe<EnsName>;
|
|
1236
|
+
findFirstEnsNameOrThrow?: Maybe<EnsName>;
|
|
1237
|
+
findFirstOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
1238
|
+
findFirstOffchainRevocationOrThrow?: Maybe<OffchainRevocation>;
|
|
1239
|
+
findFirstSchema?: Maybe<Schema>;
|
|
1240
|
+
findFirstSchemaName?: Maybe<SchemaName>;
|
|
1241
|
+
findFirstSchemaNameOrThrow?: Maybe<SchemaName>;
|
|
1242
|
+
findFirstSchemaOrThrow?: Maybe<Schema>;
|
|
1243
|
+
findFirstServiceStat?: Maybe<ServiceStat>;
|
|
1244
|
+
findFirstServiceStatOrThrow?: Maybe<ServiceStat>;
|
|
1245
|
+
findFirstTimestamp?: Maybe<Timestamp>;
|
|
1246
|
+
findFirstTimestampOrThrow?: Maybe<Timestamp>;
|
|
1247
|
+
getAttestation?: Maybe<Attestation>;
|
|
1248
|
+
getEnsName?: Maybe<EnsName>;
|
|
1249
|
+
getOffchainRevocation?: Maybe<OffchainRevocation>;
|
|
1250
|
+
getSchema?: Maybe<Schema>;
|
|
1251
|
+
getSchemaName?: Maybe<SchemaName>;
|
|
1252
|
+
getServiceStat?: Maybe<ServiceStat>;
|
|
1253
|
+
getTimestamp?: Maybe<Timestamp>;
|
|
1254
|
+
groupByAttestation: Array<AttestationGroupBy>;
|
|
1255
|
+
groupByEnsName: Array<EnsNameGroupBy>;
|
|
1256
|
+
groupByOffchainRevocation: Array<OffchainRevocationGroupBy>;
|
|
1257
|
+
groupBySchema: Array<SchemaGroupBy>;
|
|
1258
|
+
groupBySchemaName: Array<SchemaNameGroupBy>;
|
|
1259
|
+
groupByServiceStat: Array<ServiceStatGroupBy>;
|
|
1260
|
+
groupByTimestamp: Array<TimestampGroupBy>;
|
|
1261
|
+
offchainRevocation?: Maybe<OffchainRevocation>;
|
|
1262
|
+
offchainRevocations: Array<OffchainRevocation>;
|
|
1263
|
+
schema?: Maybe<Schema>;
|
|
1264
|
+
schemaName?: Maybe<SchemaName>;
|
|
1265
|
+
schemaNames: Array<SchemaName>;
|
|
1266
|
+
schemata: Array<Schema>;
|
|
1267
|
+
serviceStat?: Maybe<ServiceStat>;
|
|
1268
|
+
serviceStats: Array<ServiceStat>;
|
|
1269
|
+
timestamp?: Maybe<Timestamp>;
|
|
1270
|
+
timestamps: Array<Timestamp>;
|
|
1271
|
+
};
|
|
1272
|
+
export type QueryAggregateAttestationArgs = {
|
|
1273
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1274
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1275
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1276
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1277
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1278
|
+
};
|
|
1279
|
+
export type QueryAggregateEnsNameArgs = {
|
|
1280
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1281
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1282
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1283
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1284
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1285
|
+
};
|
|
1286
|
+
export type QueryAggregateOffchainRevocationArgs = {
|
|
1287
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1288
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1289
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1290
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1291
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1292
|
+
};
|
|
1293
|
+
export type QueryAggregateSchemaArgs = {
|
|
1294
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1295
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1296
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1297
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1298
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1299
|
+
};
|
|
1300
|
+
export type QueryAggregateSchemaNameArgs = {
|
|
1301
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1302
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1303
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1304
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1305
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1306
|
+
};
|
|
1307
|
+
export type QueryAggregateServiceStatArgs = {
|
|
1308
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1309
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1310
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1311
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1312
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1313
|
+
};
|
|
1314
|
+
export type QueryAggregateTimestampArgs = {
|
|
1315
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1316
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1317
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1318
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1319
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1320
|
+
};
|
|
1321
|
+
export type QueryAttestationArgs = {
|
|
1322
|
+
where: AttestationWhereUniqueInput;
|
|
1323
|
+
};
|
|
1324
|
+
export type QueryAttestationsArgs = {
|
|
1325
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1326
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1327
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1328
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1329
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1330
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1331
|
+
};
|
|
1332
|
+
export type QueryEnsNameArgs = {
|
|
1333
|
+
where: EnsNameWhereUniqueInput;
|
|
1334
|
+
};
|
|
1335
|
+
export type QueryEnsNamesArgs = {
|
|
1336
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1337
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1338
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1339
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1340
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1341
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1342
|
+
};
|
|
1343
|
+
export type QueryFindFirstAttestationArgs = {
|
|
1344
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1345
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1346
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1347
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1348
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1349
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1350
|
+
};
|
|
1351
|
+
export type QueryFindFirstAttestationOrThrowArgs = {
|
|
1352
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1353
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1354
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1355
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1356
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1357
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1358
|
+
};
|
|
1359
|
+
export type QueryFindFirstEnsNameArgs = {
|
|
1360
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1361
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1362
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1363
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1364
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1365
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1366
|
+
};
|
|
1367
|
+
export type QueryFindFirstEnsNameOrThrowArgs = {
|
|
1368
|
+
cursor?: InputMaybe<EnsNameWhereUniqueInput>;
|
|
1369
|
+
distinct?: InputMaybe<Array<EnsNameScalarFieldEnum>>;
|
|
1370
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithRelationInput>>;
|
|
1371
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1372
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1373
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1374
|
+
};
|
|
1375
|
+
export type QueryFindFirstOffchainRevocationArgs = {
|
|
1376
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1377
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1378
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1379
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1380
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1381
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1382
|
+
};
|
|
1383
|
+
export type QueryFindFirstOffchainRevocationOrThrowArgs = {
|
|
1384
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1385
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1386
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1387
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1388
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1389
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1390
|
+
};
|
|
1391
|
+
export type QueryFindFirstSchemaArgs = {
|
|
1392
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1393
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1394
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1395
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1396
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1397
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1398
|
+
};
|
|
1399
|
+
export type QueryFindFirstSchemaNameArgs = {
|
|
1400
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1401
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1402
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1403
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1404
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1405
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1406
|
+
};
|
|
1407
|
+
export type QueryFindFirstSchemaNameOrThrowArgs = {
|
|
1408
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1409
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1410
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1411
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1412
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1413
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1414
|
+
};
|
|
1415
|
+
export type QueryFindFirstSchemaOrThrowArgs = {
|
|
1416
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1417
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1418
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1419
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1420
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1421
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1422
|
+
};
|
|
1423
|
+
export type QueryFindFirstServiceStatArgs = {
|
|
1424
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1425
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1426
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1427
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1428
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1429
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1430
|
+
};
|
|
1431
|
+
export type QueryFindFirstServiceStatOrThrowArgs = {
|
|
1432
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1433
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1434
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1435
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1436
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1437
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1438
|
+
};
|
|
1439
|
+
export type QueryFindFirstTimestampArgs = {
|
|
1440
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1441
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1442
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1443
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1444
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1445
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1446
|
+
};
|
|
1447
|
+
export type QueryFindFirstTimestampOrThrowArgs = {
|
|
1448
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1449
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1450
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1451
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1452
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1453
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1454
|
+
};
|
|
1455
|
+
export type QueryGetAttestationArgs = {
|
|
1456
|
+
where: AttestationWhereUniqueInput;
|
|
1457
|
+
};
|
|
1458
|
+
export type QueryGetEnsNameArgs = {
|
|
1459
|
+
where: EnsNameWhereUniqueInput;
|
|
1460
|
+
};
|
|
1461
|
+
export type QueryGetOffchainRevocationArgs = {
|
|
1462
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1463
|
+
};
|
|
1464
|
+
export type QueryGetSchemaArgs = {
|
|
1465
|
+
where: SchemaWhereUniqueInput;
|
|
1466
|
+
};
|
|
1467
|
+
export type QueryGetSchemaNameArgs = {
|
|
1468
|
+
where: SchemaNameWhereUniqueInput;
|
|
1469
|
+
};
|
|
1470
|
+
export type QueryGetServiceStatArgs = {
|
|
1471
|
+
where: ServiceStatWhereUniqueInput;
|
|
1472
|
+
};
|
|
1473
|
+
export type QueryGetTimestampArgs = {
|
|
1474
|
+
where: TimestampWhereUniqueInput;
|
|
1475
|
+
};
|
|
1476
|
+
export type QueryGroupByAttestationArgs = {
|
|
1477
|
+
by: Array<AttestationScalarFieldEnum>;
|
|
1478
|
+
having?: InputMaybe<AttestationScalarWhereWithAggregatesInput>;
|
|
1479
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithAggregationInput>>;
|
|
1480
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1481
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1482
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1483
|
+
};
|
|
1484
|
+
export type QueryGroupByEnsNameArgs = {
|
|
1485
|
+
by: Array<EnsNameScalarFieldEnum>;
|
|
1486
|
+
having?: InputMaybe<EnsNameScalarWhereWithAggregatesInput>;
|
|
1487
|
+
orderBy?: InputMaybe<Array<EnsNameOrderByWithAggregationInput>>;
|
|
1488
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1489
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1490
|
+
where?: InputMaybe<EnsNameWhereInput>;
|
|
1491
|
+
};
|
|
1492
|
+
export type QueryGroupByOffchainRevocationArgs = {
|
|
1493
|
+
by: Array<OffchainRevocationScalarFieldEnum>;
|
|
1494
|
+
having?: InputMaybe<OffchainRevocationScalarWhereWithAggregatesInput>;
|
|
1495
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithAggregationInput>>;
|
|
1496
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1497
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1498
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1499
|
+
};
|
|
1500
|
+
export type QueryGroupBySchemaArgs = {
|
|
1501
|
+
by: Array<SchemaScalarFieldEnum>;
|
|
1502
|
+
having?: InputMaybe<SchemaScalarWhereWithAggregatesInput>;
|
|
1503
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithAggregationInput>>;
|
|
1504
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1505
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1506
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1507
|
+
};
|
|
1508
|
+
export type QueryGroupBySchemaNameArgs = {
|
|
1509
|
+
by: Array<SchemaNameScalarFieldEnum>;
|
|
1510
|
+
having?: InputMaybe<SchemaNameScalarWhereWithAggregatesInput>;
|
|
1511
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithAggregationInput>>;
|
|
1512
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1513
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1514
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1515
|
+
};
|
|
1516
|
+
export type QueryGroupByServiceStatArgs = {
|
|
1517
|
+
by: Array<ServiceStatScalarFieldEnum>;
|
|
1518
|
+
having?: InputMaybe<ServiceStatScalarWhereWithAggregatesInput>;
|
|
1519
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithAggregationInput>>;
|
|
1520
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1521
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1522
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1523
|
+
};
|
|
1524
|
+
export type QueryGroupByTimestampArgs = {
|
|
1525
|
+
by: Array<TimestampScalarFieldEnum>;
|
|
1526
|
+
having?: InputMaybe<TimestampScalarWhereWithAggregatesInput>;
|
|
1527
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithAggregationInput>>;
|
|
1528
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1529
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1530
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1531
|
+
};
|
|
1532
|
+
export type QueryOffchainRevocationArgs = {
|
|
1533
|
+
where: OffchainRevocationWhereUniqueInput;
|
|
1534
|
+
};
|
|
1535
|
+
export type QueryOffchainRevocationsArgs = {
|
|
1536
|
+
cursor?: InputMaybe<OffchainRevocationWhereUniqueInput>;
|
|
1537
|
+
distinct?: InputMaybe<Array<OffchainRevocationScalarFieldEnum>>;
|
|
1538
|
+
orderBy?: InputMaybe<Array<OffchainRevocationOrderByWithRelationInput>>;
|
|
1539
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1540
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1541
|
+
where?: InputMaybe<OffchainRevocationWhereInput>;
|
|
1542
|
+
};
|
|
1543
|
+
export type QuerySchemaArgs = {
|
|
1544
|
+
where: SchemaWhereUniqueInput;
|
|
1545
|
+
};
|
|
1546
|
+
export type QuerySchemaNameArgs = {
|
|
1547
|
+
where: SchemaNameWhereUniqueInput;
|
|
1548
|
+
};
|
|
1549
|
+
export type QuerySchemaNamesArgs = {
|
|
1550
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1551
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1552
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1553
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1554
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1555
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1556
|
+
};
|
|
1557
|
+
export type QuerySchemataArgs = {
|
|
1558
|
+
cursor?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1559
|
+
distinct?: InputMaybe<Array<SchemaScalarFieldEnum>>;
|
|
1560
|
+
orderBy?: InputMaybe<Array<SchemaOrderByWithRelationInput>>;
|
|
1561
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1562
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1563
|
+
where?: InputMaybe<SchemaWhereInput>;
|
|
1564
|
+
};
|
|
1565
|
+
export type QueryServiceStatArgs = {
|
|
1566
|
+
where: ServiceStatWhereUniqueInput;
|
|
1567
|
+
};
|
|
1568
|
+
export type QueryServiceStatsArgs = {
|
|
1569
|
+
cursor?: InputMaybe<ServiceStatWhereUniqueInput>;
|
|
1570
|
+
distinct?: InputMaybe<Array<ServiceStatScalarFieldEnum>>;
|
|
1571
|
+
orderBy?: InputMaybe<Array<ServiceStatOrderByWithRelationInput>>;
|
|
1572
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1573
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1574
|
+
where?: InputMaybe<ServiceStatWhereInput>;
|
|
1575
|
+
};
|
|
1576
|
+
export type QueryTimestampArgs = {
|
|
1577
|
+
where: TimestampWhereUniqueInput;
|
|
1578
|
+
};
|
|
1579
|
+
export type QueryTimestampsArgs = {
|
|
1580
|
+
cursor?: InputMaybe<TimestampWhereUniqueInput>;
|
|
1581
|
+
distinct?: InputMaybe<Array<TimestampScalarFieldEnum>>;
|
|
1582
|
+
orderBy?: InputMaybe<Array<TimestampOrderByWithRelationInput>>;
|
|
1583
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1584
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1585
|
+
where?: InputMaybe<TimestampWhereInput>;
|
|
1586
|
+
};
|
|
1587
|
+
export declare enum QueryMode {
|
|
1588
|
+
Default = "default",
|
|
1589
|
+
Insensitive = "insensitive"
|
|
1590
|
+
}
|
|
1591
|
+
export type Schema = {
|
|
1592
|
+
__typename?: 'Schema';
|
|
1593
|
+
_count?: Maybe<SchemaCount>;
|
|
1594
|
+
attestations: Array<Attestation>;
|
|
1595
|
+
creator: Scalars['String']['output'];
|
|
1596
|
+
id: Scalars['String']['output'];
|
|
1597
|
+
index: Scalars['String']['output'];
|
|
1598
|
+
resolver: Scalars['String']['output'];
|
|
1599
|
+
revocable: Scalars['Boolean']['output'];
|
|
1600
|
+
schema: Scalars['String']['output'];
|
|
1601
|
+
schemaNames: Array<SchemaName>;
|
|
1602
|
+
time: Scalars['Int']['output'];
|
|
1603
|
+
txid: Scalars['String']['output'];
|
|
1604
|
+
};
|
|
1605
|
+
export type SchemaAttestationsArgs = {
|
|
1606
|
+
cursor?: InputMaybe<AttestationWhereUniqueInput>;
|
|
1607
|
+
distinct?: InputMaybe<Array<AttestationScalarFieldEnum>>;
|
|
1608
|
+
orderBy?: InputMaybe<Array<AttestationOrderByWithRelationInput>>;
|
|
1609
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1610
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1611
|
+
where?: InputMaybe<AttestationWhereInput>;
|
|
1612
|
+
};
|
|
1613
|
+
export type SchemaSchemaNamesArgs = {
|
|
1614
|
+
cursor?: InputMaybe<SchemaNameWhereUniqueInput>;
|
|
1615
|
+
distinct?: InputMaybe<Array<SchemaNameScalarFieldEnum>>;
|
|
1616
|
+
orderBy?: InputMaybe<Array<SchemaNameOrderByWithRelationInput>>;
|
|
1617
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
1618
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
1619
|
+
where?: InputMaybe<SchemaNameWhereInput>;
|
|
1620
|
+
};
|
|
1621
|
+
export type SchemaAvgAggregate = {
|
|
1622
|
+
__typename?: 'SchemaAvgAggregate';
|
|
1623
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
1624
|
+
};
|
|
1625
|
+
export type SchemaAvgOrderByAggregateInput = {
|
|
1626
|
+
time?: InputMaybe<SortOrder>;
|
|
1627
|
+
};
|
|
1628
|
+
export type SchemaCount = {
|
|
1629
|
+
__typename?: 'SchemaCount';
|
|
1630
|
+
attestations: Scalars['Int']['output'];
|
|
1631
|
+
schemaNames: Scalars['Int']['output'];
|
|
1632
|
+
};
|
|
1633
|
+
export type SchemaCountAggregate = {
|
|
1634
|
+
__typename?: 'SchemaCountAggregate';
|
|
1635
|
+
_all: Scalars['Int']['output'];
|
|
1636
|
+
creator: Scalars['Int']['output'];
|
|
1637
|
+
id: Scalars['Int']['output'];
|
|
1638
|
+
index: Scalars['Int']['output'];
|
|
1639
|
+
resolver: Scalars['Int']['output'];
|
|
1640
|
+
revocable: Scalars['Int']['output'];
|
|
1641
|
+
schema: Scalars['Int']['output'];
|
|
1642
|
+
time: Scalars['Int']['output'];
|
|
1643
|
+
txid: Scalars['Int']['output'];
|
|
1644
|
+
};
|
|
1645
|
+
export type SchemaCountOrderByAggregateInput = {
|
|
1646
|
+
creator?: InputMaybe<SortOrder>;
|
|
1647
|
+
id?: InputMaybe<SortOrder>;
|
|
1648
|
+
index?: InputMaybe<SortOrder>;
|
|
1649
|
+
resolver?: InputMaybe<SortOrder>;
|
|
1650
|
+
revocable?: InputMaybe<SortOrder>;
|
|
1651
|
+
schema?: InputMaybe<SortOrder>;
|
|
1652
|
+
time?: InputMaybe<SortOrder>;
|
|
1653
|
+
txid?: InputMaybe<SortOrder>;
|
|
1654
|
+
};
|
|
1655
|
+
export type SchemaCreateInput = {
|
|
1656
|
+
attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;
|
|
1657
|
+
creator: Scalars['String']['input'];
|
|
1658
|
+
id: Scalars['String']['input'];
|
|
1659
|
+
index: Scalars['String']['input'];
|
|
1660
|
+
resolver: Scalars['String']['input'];
|
|
1661
|
+
revocable: Scalars['Boolean']['input'];
|
|
1662
|
+
schema: Scalars['String']['input'];
|
|
1663
|
+
schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;
|
|
1664
|
+
time: Scalars['Int']['input'];
|
|
1665
|
+
txid: Scalars['String']['input'];
|
|
1666
|
+
};
|
|
1667
|
+
export type SchemaCreateManyInput = {
|
|
1668
|
+
creator: Scalars['String']['input'];
|
|
1669
|
+
id: Scalars['String']['input'];
|
|
1670
|
+
index: Scalars['String']['input'];
|
|
1671
|
+
resolver: Scalars['String']['input'];
|
|
1672
|
+
revocable: Scalars['Boolean']['input'];
|
|
1673
|
+
schema: Scalars['String']['input'];
|
|
1674
|
+
time: Scalars['Int']['input'];
|
|
1675
|
+
txid: Scalars['String']['input'];
|
|
1676
|
+
};
|
|
1677
|
+
export type SchemaCreateNestedOneWithoutAttestationsInput = {
|
|
1678
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1679
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;
|
|
1680
|
+
create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;
|
|
1681
|
+
};
|
|
1682
|
+
export type SchemaCreateNestedOneWithoutSchemaNamesInput = {
|
|
1683
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
1684
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;
|
|
1685
|
+
create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;
|
|
1686
|
+
};
|
|
1687
|
+
export type SchemaCreateOrConnectWithoutAttestationsInput = {
|
|
1688
|
+
create: SchemaCreateWithoutAttestationsInput;
|
|
1689
|
+
where: SchemaWhereUniqueInput;
|
|
1690
|
+
};
|
|
1691
|
+
export type SchemaCreateOrConnectWithoutSchemaNamesInput = {
|
|
1692
|
+
create: SchemaCreateWithoutSchemaNamesInput;
|
|
1693
|
+
where: SchemaWhereUniqueInput;
|
|
1694
|
+
};
|
|
1695
|
+
export type SchemaCreateWithoutAttestationsInput = {
|
|
1696
|
+
creator: Scalars['String']['input'];
|
|
1697
|
+
id: Scalars['String']['input'];
|
|
1698
|
+
index: Scalars['String']['input'];
|
|
1699
|
+
resolver: Scalars['String']['input'];
|
|
1700
|
+
revocable: Scalars['Boolean']['input'];
|
|
1701
|
+
schema: Scalars['String']['input'];
|
|
1702
|
+
schemaNames?: InputMaybe<SchemaNameCreateNestedManyWithoutSchemaInput>;
|
|
1703
|
+
time: Scalars['Int']['input'];
|
|
1704
|
+
txid: Scalars['String']['input'];
|
|
1705
|
+
};
|
|
1706
|
+
export type SchemaCreateWithoutSchemaNamesInput = {
|
|
1707
|
+
attestations?: InputMaybe<AttestationCreateNestedManyWithoutSchemaInput>;
|
|
1708
|
+
creator: Scalars['String']['input'];
|
|
1709
|
+
id: Scalars['String']['input'];
|
|
1710
|
+
index: Scalars['String']['input'];
|
|
1711
|
+
resolver: Scalars['String']['input'];
|
|
1712
|
+
revocable: Scalars['Boolean']['input'];
|
|
1713
|
+
schema: Scalars['String']['input'];
|
|
1714
|
+
time: Scalars['Int']['input'];
|
|
1715
|
+
txid: Scalars['String']['input'];
|
|
1716
|
+
};
|
|
1717
|
+
export type SchemaGroupBy = {
|
|
1718
|
+
__typename?: 'SchemaGroupBy';
|
|
1719
|
+
_avg?: Maybe<SchemaAvgAggregate>;
|
|
1720
|
+
_count?: Maybe<SchemaCountAggregate>;
|
|
1721
|
+
_max?: Maybe<SchemaMaxAggregate>;
|
|
1722
|
+
_min?: Maybe<SchemaMinAggregate>;
|
|
1723
|
+
_sum?: Maybe<SchemaSumAggregate>;
|
|
1724
|
+
creator: Scalars['String']['output'];
|
|
1725
|
+
id: Scalars['String']['output'];
|
|
1726
|
+
index: Scalars['String']['output'];
|
|
1727
|
+
resolver: Scalars['String']['output'];
|
|
1728
|
+
revocable: Scalars['Boolean']['output'];
|
|
1729
|
+
schema: Scalars['String']['output'];
|
|
1730
|
+
time: Scalars['Int']['output'];
|
|
1731
|
+
txid: Scalars['String']['output'];
|
|
1732
|
+
};
|
|
1733
|
+
export type SchemaMaxAggregate = {
|
|
1734
|
+
__typename?: 'SchemaMaxAggregate';
|
|
1735
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
1736
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1737
|
+
index?: Maybe<Scalars['String']['output']>;
|
|
1738
|
+
resolver?: Maybe<Scalars['String']['output']>;
|
|
1739
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
1740
|
+
schema?: Maybe<Scalars['String']['output']>;
|
|
1741
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
1742
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1743
|
+
};
|
|
1744
|
+
export type SchemaMaxOrderByAggregateInput = {
|
|
1745
|
+
creator?: InputMaybe<SortOrder>;
|
|
1746
|
+
id?: InputMaybe<SortOrder>;
|
|
1747
|
+
index?: InputMaybe<SortOrder>;
|
|
1748
|
+
resolver?: InputMaybe<SortOrder>;
|
|
1749
|
+
revocable?: InputMaybe<SortOrder>;
|
|
1750
|
+
schema?: InputMaybe<SortOrder>;
|
|
1751
|
+
time?: InputMaybe<SortOrder>;
|
|
1752
|
+
txid?: InputMaybe<SortOrder>;
|
|
1753
|
+
};
|
|
1754
|
+
export type SchemaMinAggregate = {
|
|
1755
|
+
__typename?: 'SchemaMinAggregate';
|
|
1756
|
+
creator?: Maybe<Scalars['String']['output']>;
|
|
1757
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1758
|
+
index?: Maybe<Scalars['String']['output']>;
|
|
1759
|
+
resolver?: Maybe<Scalars['String']['output']>;
|
|
1760
|
+
revocable?: Maybe<Scalars['Boolean']['output']>;
|
|
1761
|
+
schema?: Maybe<Scalars['String']['output']>;
|
|
1762
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
1763
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
1764
|
+
};
|
|
1765
|
+
export type SchemaMinOrderByAggregateInput = {
|
|
1766
|
+
creator?: InputMaybe<SortOrder>;
|
|
1767
|
+
id?: InputMaybe<SortOrder>;
|
|
1768
|
+
index?: InputMaybe<SortOrder>;
|
|
1769
|
+
resolver?: InputMaybe<SortOrder>;
|
|
1770
|
+
revocable?: InputMaybe<SortOrder>;
|
|
1771
|
+
schema?: InputMaybe<SortOrder>;
|
|
1772
|
+
time?: InputMaybe<SortOrder>;
|
|
1773
|
+
txid?: InputMaybe<SortOrder>;
|
|
1774
|
+
};
|
|
1775
|
+
export type SchemaName = {
|
|
1776
|
+
__typename?: 'SchemaName';
|
|
1777
|
+
attesterAddress: Scalars['String']['output'];
|
|
1778
|
+
id: Scalars['String']['output'];
|
|
1779
|
+
isCreator: Scalars['Boolean']['output'];
|
|
1780
|
+
name: Scalars['String']['output'];
|
|
1781
|
+
schema: Schema;
|
|
1782
|
+
schemaId: Scalars['String']['output'];
|
|
1783
|
+
time: Scalars['Int']['output'];
|
|
1784
|
+
};
|
|
1785
|
+
export type SchemaNameAvgAggregate = {
|
|
1786
|
+
__typename?: 'SchemaNameAvgAggregate';
|
|
1787
|
+
time?: Maybe<Scalars['Float']['output']>;
|
|
1788
|
+
};
|
|
1789
|
+
export type SchemaNameAvgOrderByAggregateInput = {
|
|
1790
|
+
time?: InputMaybe<SortOrder>;
|
|
1791
|
+
};
|
|
1792
|
+
export type SchemaNameCountAggregate = {
|
|
1793
|
+
__typename?: 'SchemaNameCountAggregate';
|
|
1794
|
+
_all: Scalars['Int']['output'];
|
|
1795
|
+
attesterAddress: Scalars['Int']['output'];
|
|
1796
|
+
id: Scalars['Int']['output'];
|
|
1797
|
+
isCreator: Scalars['Int']['output'];
|
|
1798
|
+
name: Scalars['Int']['output'];
|
|
1799
|
+
schemaId: Scalars['Int']['output'];
|
|
1800
|
+
time: Scalars['Int']['output'];
|
|
1801
|
+
};
|
|
1802
|
+
export type SchemaNameCountOrderByAggregateInput = {
|
|
1803
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
1804
|
+
id?: InputMaybe<SortOrder>;
|
|
1805
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
1806
|
+
name?: InputMaybe<SortOrder>;
|
|
1807
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
1808
|
+
time?: InputMaybe<SortOrder>;
|
|
1809
|
+
};
|
|
1810
|
+
export type SchemaNameCreateInput = {
|
|
1811
|
+
attesterAddress: Scalars['String']['input'];
|
|
1812
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1813
|
+
isCreator: Scalars['Boolean']['input'];
|
|
1814
|
+
name: Scalars['String']['input'];
|
|
1815
|
+
schema: SchemaCreateNestedOneWithoutSchemaNamesInput;
|
|
1816
|
+
time: Scalars['Int']['input'];
|
|
1817
|
+
};
|
|
1818
|
+
export type SchemaNameCreateManyInput = {
|
|
1819
|
+
attesterAddress: Scalars['String']['input'];
|
|
1820
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1821
|
+
isCreator: Scalars['Boolean']['input'];
|
|
1822
|
+
name: Scalars['String']['input'];
|
|
1823
|
+
schemaId: Scalars['String']['input'];
|
|
1824
|
+
time: Scalars['Int']['input'];
|
|
1825
|
+
};
|
|
1826
|
+
export type SchemaNameCreateManySchemaInput = {
|
|
1827
|
+
attesterAddress: Scalars['String']['input'];
|
|
1828
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1829
|
+
isCreator: Scalars['Boolean']['input'];
|
|
1830
|
+
name: Scalars['String']['input'];
|
|
1831
|
+
time: Scalars['Int']['input'];
|
|
1832
|
+
};
|
|
1833
|
+
export type SchemaNameCreateManySchemaInputEnvelope = {
|
|
1834
|
+
data: Array<SchemaNameCreateManySchemaInput>;
|
|
1835
|
+
skipDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1836
|
+
};
|
|
1837
|
+
export type SchemaNameCreateNestedManyWithoutSchemaInput = {
|
|
1838
|
+
connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
1839
|
+
connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;
|
|
1840
|
+
create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;
|
|
1841
|
+
createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;
|
|
1842
|
+
};
|
|
1843
|
+
export type SchemaNameCreateOrConnectWithoutSchemaInput = {
|
|
1844
|
+
create: SchemaNameCreateWithoutSchemaInput;
|
|
1845
|
+
where: SchemaNameWhereUniqueInput;
|
|
1846
|
+
};
|
|
1847
|
+
export type SchemaNameCreateWithoutSchemaInput = {
|
|
1848
|
+
attesterAddress: Scalars['String']['input'];
|
|
1849
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
1850
|
+
isCreator: Scalars['Boolean']['input'];
|
|
1851
|
+
name: Scalars['String']['input'];
|
|
1852
|
+
time: Scalars['Int']['input'];
|
|
1853
|
+
};
|
|
1854
|
+
export type SchemaNameGroupBy = {
|
|
1855
|
+
__typename?: 'SchemaNameGroupBy';
|
|
1856
|
+
_avg?: Maybe<SchemaNameAvgAggregate>;
|
|
1857
|
+
_count?: Maybe<SchemaNameCountAggregate>;
|
|
1858
|
+
_max?: Maybe<SchemaNameMaxAggregate>;
|
|
1859
|
+
_min?: Maybe<SchemaNameMinAggregate>;
|
|
1860
|
+
_sum?: Maybe<SchemaNameSumAggregate>;
|
|
1861
|
+
attesterAddress: Scalars['String']['output'];
|
|
1862
|
+
id: Scalars['String']['output'];
|
|
1863
|
+
isCreator: Scalars['Boolean']['output'];
|
|
1864
|
+
name: Scalars['String']['output'];
|
|
1865
|
+
schemaId: Scalars['String']['output'];
|
|
1866
|
+
time: Scalars['Int']['output'];
|
|
1867
|
+
};
|
|
1868
|
+
export type SchemaNameListRelationFilter = {
|
|
1869
|
+
every?: InputMaybe<SchemaNameWhereInput>;
|
|
1870
|
+
none?: InputMaybe<SchemaNameWhereInput>;
|
|
1871
|
+
some?: InputMaybe<SchemaNameWhereInput>;
|
|
1872
|
+
};
|
|
1873
|
+
export type SchemaNameMaxAggregate = {
|
|
1874
|
+
__typename?: 'SchemaNameMaxAggregate';
|
|
1875
|
+
attesterAddress?: Maybe<Scalars['String']['output']>;
|
|
1876
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1877
|
+
isCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
1878
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1879
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
1880
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
1881
|
+
};
|
|
1882
|
+
export type SchemaNameMaxOrderByAggregateInput = {
|
|
1883
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
1884
|
+
id?: InputMaybe<SortOrder>;
|
|
1885
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
1886
|
+
name?: InputMaybe<SortOrder>;
|
|
1887
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
1888
|
+
time?: InputMaybe<SortOrder>;
|
|
1889
|
+
};
|
|
1890
|
+
export type SchemaNameMinAggregate = {
|
|
1891
|
+
__typename?: 'SchemaNameMinAggregate';
|
|
1892
|
+
attesterAddress?: Maybe<Scalars['String']['output']>;
|
|
1893
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
1894
|
+
isCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
1895
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1896
|
+
schemaId?: Maybe<Scalars['String']['output']>;
|
|
1897
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
1898
|
+
};
|
|
1899
|
+
export type SchemaNameMinOrderByAggregateInput = {
|
|
1900
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
1901
|
+
id?: InputMaybe<SortOrder>;
|
|
1902
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
1903
|
+
name?: InputMaybe<SortOrder>;
|
|
1904
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
1905
|
+
time?: InputMaybe<SortOrder>;
|
|
1906
|
+
};
|
|
1907
|
+
export type SchemaNameOrderByRelationAggregateInput = {
|
|
1908
|
+
_count?: InputMaybe<SortOrder>;
|
|
1909
|
+
};
|
|
1910
|
+
export type SchemaNameOrderByWithAggregationInput = {
|
|
1911
|
+
_avg?: InputMaybe<SchemaNameAvgOrderByAggregateInput>;
|
|
1912
|
+
_count?: InputMaybe<SchemaNameCountOrderByAggregateInput>;
|
|
1913
|
+
_max?: InputMaybe<SchemaNameMaxOrderByAggregateInput>;
|
|
1914
|
+
_min?: InputMaybe<SchemaNameMinOrderByAggregateInput>;
|
|
1915
|
+
_sum?: InputMaybe<SchemaNameSumOrderByAggregateInput>;
|
|
1916
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
1917
|
+
id?: InputMaybe<SortOrder>;
|
|
1918
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
1919
|
+
name?: InputMaybe<SortOrder>;
|
|
1920
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
1921
|
+
time?: InputMaybe<SortOrder>;
|
|
1922
|
+
};
|
|
1923
|
+
export type SchemaNameOrderByWithRelationInput = {
|
|
1924
|
+
attesterAddress?: InputMaybe<SortOrder>;
|
|
1925
|
+
id?: InputMaybe<SortOrder>;
|
|
1926
|
+
isCreator?: InputMaybe<SortOrder>;
|
|
1927
|
+
name?: InputMaybe<SortOrder>;
|
|
1928
|
+
schema?: InputMaybe<SchemaOrderByWithRelationInput>;
|
|
1929
|
+
schemaId?: InputMaybe<SortOrder>;
|
|
1930
|
+
time?: InputMaybe<SortOrder>;
|
|
1931
|
+
};
|
|
1932
|
+
export declare enum SchemaNameScalarFieldEnum {
|
|
1933
|
+
AttesterAddress = "attesterAddress",
|
|
1934
|
+
Id = "id",
|
|
1935
|
+
IsCreator = "isCreator",
|
|
1936
|
+
Name = "name",
|
|
1937
|
+
SchemaId = "schemaId",
|
|
1938
|
+
Time = "time"
|
|
1939
|
+
}
|
|
1940
|
+
export type SchemaNameScalarWhereInput = {
|
|
1941
|
+
AND?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
1942
|
+
NOT?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
1943
|
+
OR?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
1944
|
+
attesterAddress?: InputMaybe<StringFilter>;
|
|
1945
|
+
id?: InputMaybe<StringFilter>;
|
|
1946
|
+
isCreator?: InputMaybe<BoolFilter>;
|
|
1947
|
+
name?: InputMaybe<StringFilter>;
|
|
1948
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
1949
|
+
time?: InputMaybe<IntFilter>;
|
|
1950
|
+
};
|
|
1951
|
+
export type SchemaNameScalarWhereWithAggregatesInput = {
|
|
1952
|
+
AND?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
1953
|
+
NOT?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
1954
|
+
OR?: InputMaybe<Array<SchemaNameScalarWhereWithAggregatesInput>>;
|
|
1955
|
+
attesterAddress?: InputMaybe<StringWithAggregatesFilter>;
|
|
1956
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
1957
|
+
isCreator?: InputMaybe<BoolWithAggregatesFilter>;
|
|
1958
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
1959
|
+
schemaId?: InputMaybe<StringWithAggregatesFilter>;
|
|
1960
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
1961
|
+
};
|
|
1962
|
+
export type SchemaNameSumAggregate = {
|
|
1963
|
+
__typename?: 'SchemaNameSumAggregate';
|
|
1964
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
1965
|
+
};
|
|
1966
|
+
export type SchemaNameSumOrderByAggregateInput = {
|
|
1967
|
+
time?: InputMaybe<SortOrder>;
|
|
1968
|
+
};
|
|
1969
|
+
export type SchemaNameUpdateInput = {
|
|
1970
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1971
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1972
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
1973
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1974
|
+
schema?: InputMaybe<SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput>;
|
|
1975
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1976
|
+
};
|
|
1977
|
+
export type SchemaNameUpdateManyMutationInput = {
|
|
1978
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1979
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1980
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
1981
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
1982
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
1983
|
+
};
|
|
1984
|
+
export type SchemaNameUpdateManyWithWhereWithoutSchemaInput = {
|
|
1985
|
+
data: SchemaNameUpdateManyMutationInput;
|
|
1986
|
+
where: SchemaNameScalarWhereInput;
|
|
1987
|
+
};
|
|
1988
|
+
export type SchemaNameUpdateManyWithoutSchemaNestedInput = {
|
|
1989
|
+
connect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
1990
|
+
connectOrCreate?: InputMaybe<Array<SchemaNameCreateOrConnectWithoutSchemaInput>>;
|
|
1991
|
+
create?: InputMaybe<Array<SchemaNameCreateWithoutSchemaInput>>;
|
|
1992
|
+
createMany?: InputMaybe<SchemaNameCreateManySchemaInputEnvelope>;
|
|
1993
|
+
delete?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
1994
|
+
deleteMany?: InputMaybe<Array<SchemaNameScalarWhereInput>>;
|
|
1995
|
+
disconnect?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
1996
|
+
set?: InputMaybe<Array<SchemaNameWhereUniqueInput>>;
|
|
1997
|
+
update?: InputMaybe<Array<SchemaNameUpdateWithWhereUniqueWithoutSchemaInput>>;
|
|
1998
|
+
updateMany?: InputMaybe<Array<SchemaNameUpdateManyWithWhereWithoutSchemaInput>>;
|
|
1999
|
+
upsert?: InputMaybe<Array<SchemaNameUpsertWithWhereUniqueWithoutSchemaInput>>;
|
|
2000
|
+
};
|
|
2001
|
+
export type SchemaNameUpdateWithWhereUniqueWithoutSchemaInput = {
|
|
2002
|
+
data: SchemaNameUpdateWithoutSchemaInput;
|
|
2003
|
+
where: SchemaNameWhereUniqueInput;
|
|
2004
|
+
};
|
|
2005
|
+
export type SchemaNameUpdateWithoutSchemaInput = {
|
|
2006
|
+
attesterAddress?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2007
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2008
|
+
isCreator?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2009
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2010
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2011
|
+
};
|
|
2012
|
+
export type SchemaNameUpsertWithWhereUniqueWithoutSchemaInput = {
|
|
2013
|
+
create: SchemaNameCreateWithoutSchemaInput;
|
|
2014
|
+
update: SchemaNameUpdateWithoutSchemaInput;
|
|
2015
|
+
where: SchemaNameWhereUniqueInput;
|
|
2016
|
+
};
|
|
2017
|
+
export type SchemaNameWhereInput = {
|
|
2018
|
+
AND?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2019
|
+
NOT?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2020
|
+
OR?: InputMaybe<Array<SchemaNameWhereInput>>;
|
|
2021
|
+
attesterAddress?: InputMaybe<StringFilter>;
|
|
2022
|
+
id?: InputMaybe<StringFilter>;
|
|
2023
|
+
isCreator?: InputMaybe<BoolFilter>;
|
|
2024
|
+
name?: InputMaybe<StringFilter>;
|
|
2025
|
+
schema?: InputMaybe<SchemaRelationFilter>;
|
|
2026
|
+
schemaId?: InputMaybe<StringFilter>;
|
|
2027
|
+
time?: InputMaybe<IntFilter>;
|
|
2028
|
+
};
|
|
2029
|
+
export type SchemaNameWhereUniqueInput = {
|
|
2030
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2031
|
+
};
|
|
2032
|
+
export type SchemaOrderByWithAggregationInput = {
|
|
2033
|
+
_avg?: InputMaybe<SchemaAvgOrderByAggregateInput>;
|
|
2034
|
+
_count?: InputMaybe<SchemaCountOrderByAggregateInput>;
|
|
2035
|
+
_max?: InputMaybe<SchemaMaxOrderByAggregateInput>;
|
|
2036
|
+
_min?: InputMaybe<SchemaMinOrderByAggregateInput>;
|
|
2037
|
+
_sum?: InputMaybe<SchemaSumOrderByAggregateInput>;
|
|
2038
|
+
creator?: InputMaybe<SortOrder>;
|
|
2039
|
+
id?: InputMaybe<SortOrder>;
|
|
2040
|
+
index?: InputMaybe<SortOrder>;
|
|
2041
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2042
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2043
|
+
schema?: InputMaybe<SortOrder>;
|
|
2044
|
+
time?: InputMaybe<SortOrder>;
|
|
2045
|
+
txid?: InputMaybe<SortOrder>;
|
|
2046
|
+
};
|
|
2047
|
+
export type SchemaOrderByWithRelationInput = {
|
|
2048
|
+
attestations?: InputMaybe<AttestationOrderByRelationAggregateInput>;
|
|
2049
|
+
creator?: InputMaybe<SortOrder>;
|
|
2050
|
+
id?: InputMaybe<SortOrder>;
|
|
2051
|
+
index?: InputMaybe<SortOrder>;
|
|
2052
|
+
resolver?: InputMaybe<SortOrder>;
|
|
2053
|
+
revocable?: InputMaybe<SortOrder>;
|
|
2054
|
+
schema?: InputMaybe<SortOrder>;
|
|
2055
|
+
schemaNames?: InputMaybe<SchemaNameOrderByRelationAggregateInput>;
|
|
2056
|
+
time?: InputMaybe<SortOrder>;
|
|
2057
|
+
txid?: InputMaybe<SortOrder>;
|
|
2058
|
+
};
|
|
2059
|
+
export type SchemaRelationFilter = {
|
|
2060
|
+
is?: InputMaybe<SchemaWhereInput>;
|
|
2061
|
+
isNot?: InputMaybe<SchemaWhereInput>;
|
|
2062
|
+
};
|
|
2063
|
+
export declare enum SchemaScalarFieldEnum {
|
|
2064
|
+
Creator = "creator",
|
|
2065
|
+
Id = "id",
|
|
2066
|
+
Index = "index",
|
|
2067
|
+
Resolver = "resolver",
|
|
2068
|
+
Revocable = "revocable",
|
|
2069
|
+
Schema = "schema",
|
|
2070
|
+
Time = "time",
|
|
2071
|
+
Txid = "txid"
|
|
2072
|
+
}
|
|
2073
|
+
export type SchemaScalarWhereWithAggregatesInput = {
|
|
2074
|
+
AND?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2075
|
+
NOT?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2076
|
+
OR?: InputMaybe<Array<SchemaScalarWhereWithAggregatesInput>>;
|
|
2077
|
+
creator?: InputMaybe<StringWithAggregatesFilter>;
|
|
2078
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
2079
|
+
index?: InputMaybe<StringWithAggregatesFilter>;
|
|
2080
|
+
resolver?: InputMaybe<StringWithAggregatesFilter>;
|
|
2081
|
+
revocable?: InputMaybe<BoolWithAggregatesFilter>;
|
|
2082
|
+
schema?: InputMaybe<StringWithAggregatesFilter>;
|
|
2083
|
+
time?: InputMaybe<IntWithAggregatesFilter>;
|
|
2084
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
2085
|
+
};
|
|
2086
|
+
export type SchemaSumAggregate = {
|
|
2087
|
+
__typename?: 'SchemaSumAggregate';
|
|
2088
|
+
time?: Maybe<Scalars['Int']['output']>;
|
|
2089
|
+
};
|
|
2090
|
+
export type SchemaSumOrderByAggregateInput = {
|
|
2091
|
+
time?: InputMaybe<SortOrder>;
|
|
2092
|
+
};
|
|
2093
|
+
export type SchemaUpdateInput = {
|
|
2094
|
+
attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;
|
|
2095
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2096
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2097
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2098
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2099
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2100
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2101
|
+
schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;
|
|
2102
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2103
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2104
|
+
};
|
|
2105
|
+
export type SchemaUpdateManyMutationInput = {
|
|
2106
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2107
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2108
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2109
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2110
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2111
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2112
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2113
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2114
|
+
};
|
|
2115
|
+
export type SchemaUpdateOneRequiredWithoutAttestationsNestedInput = {
|
|
2116
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2117
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutAttestationsInput>;
|
|
2118
|
+
create?: InputMaybe<SchemaCreateWithoutAttestationsInput>;
|
|
2119
|
+
update?: InputMaybe<SchemaUpdateWithoutAttestationsInput>;
|
|
2120
|
+
upsert?: InputMaybe<SchemaUpsertWithoutAttestationsInput>;
|
|
2121
|
+
};
|
|
2122
|
+
export type SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput = {
|
|
2123
|
+
connect?: InputMaybe<SchemaWhereUniqueInput>;
|
|
2124
|
+
connectOrCreate?: InputMaybe<SchemaCreateOrConnectWithoutSchemaNamesInput>;
|
|
2125
|
+
create?: InputMaybe<SchemaCreateWithoutSchemaNamesInput>;
|
|
2126
|
+
update?: InputMaybe<SchemaUpdateWithoutSchemaNamesInput>;
|
|
2127
|
+
upsert?: InputMaybe<SchemaUpsertWithoutSchemaNamesInput>;
|
|
2128
|
+
};
|
|
2129
|
+
export type SchemaUpdateWithoutAttestationsInput = {
|
|
2130
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2131
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2132
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2133
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2134
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2135
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2136
|
+
schemaNames?: InputMaybe<SchemaNameUpdateManyWithoutSchemaNestedInput>;
|
|
2137
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2138
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2139
|
+
};
|
|
2140
|
+
export type SchemaUpdateWithoutSchemaNamesInput = {
|
|
2141
|
+
attestations?: InputMaybe<AttestationUpdateManyWithoutSchemaNestedInput>;
|
|
2142
|
+
creator?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2143
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2144
|
+
index?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2145
|
+
resolver?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2146
|
+
revocable?: InputMaybe<BoolFieldUpdateOperationsInput>;
|
|
2147
|
+
schema?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2148
|
+
time?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2149
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2150
|
+
};
|
|
2151
|
+
export type SchemaUpsertWithoutAttestationsInput = {
|
|
2152
|
+
create: SchemaCreateWithoutAttestationsInput;
|
|
2153
|
+
update: SchemaUpdateWithoutAttestationsInput;
|
|
2154
|
+
};
|
|
2155
|
+
export type SchemaUpsertWithoutSchemaNamesInput = {
|
|
2156
|
+
create: SchemaCreateWithoutSchemaNamesInput;
|
|
2157
|
+
update: SchemaUpdateWithoutSchemaNamesInput;
|
|
2158
|
+
};
|
|
2159
|
+
export type SchemaWhereInput = {
|
|
2160
|
+
AND?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2161
|
+
NOT?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2162
|
+
OR?: InputMaybe<Array<SchemaWhereInput>>;
|
|
2163
|
+
attestations?: InputMaybe<AttestationListRelationFilter>;
|
|
2164
|
+
creator?: InputMaybe<StringFilter>;
|
|
2165
|
+
id?: InputMaybe<StringFilter>;
|
|
2166
|
+
index?: InputMaybe<StringFilter>;
|
|
2167
|
+
resolver?: InputMaybe<StringFilter>;
|
|
2168
|
+
revocable?: InputMaybe<BoolFilter>;
|
|
2169
|
+
schema?: InputMaybe<StringFilter>;
|
|
2170
|
+
schemaNames?: InputMaybe<SchemaNameListRelationFilter>;
|
|
2171
|
+
time?: InputMaybe<IntFilter>;
|
|
2172
|
+
txid?: InputMaybe<StringFilter>;
|
|
2173
|
+
};
|
|
2174
|
+
export type SchemaWhereUniqueInput = {
|
|
2175
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2176
|
+
};
|
|
2177
|
+
export type ServiceStat = {
|
|
2178
|
+
__typename?: 'ServiceStat';
|
|
2179
|
+
name: Scalars['String']['output'];
|
|
2180
|
+
value: Scalars['String']['output'];
|
|
2181
|
+
};
|
|
2182
|
+
export type ServiceStatCountAggregate = {
|
|
2183
|
+
__typename?: 'ServiceStatCountAggregate';
|
|
2184
|
+
_all: Scalars['Int']['output'];
|
|
2185
|
+
name: Scalars['Int']['output'];
|
|
2186
|
+
value: Scalars['Int']['output'];
|
|
2187
|
+
};
|
|
2188
|
+
export type ServiceStatCountOrderByAggregateInput = {
|
|
2189
|
+
name?: InputMaybe<SortOrder>;
|
|
2190
|
+
value?: InputMaybe<SortOrder>;
|
|
2191
|
+
};
|
|
2192
|
+
export type ServiceStatCreateInput = {
|
|
2193
|
+
name: Scalars['String']['input'];
|
|
2194
|
+
value: Scalars['String']['input'];
|
|
2195
|
+
};
|
|
2196
|
+
export type ServiceStatCreateManyInput = {
|
|
2197
|
+
name: Scalars['String']['input'];
|
|
2198
|
+
value: Scalars['String']['input'];
|
|
2199
|
+
};
|
|
2200
|
+
export type ServiceStatGroupBy = {
|
|
2201
|
+
__typename?: 'ServiceStatGroupBy';
|
|
2202
|
+
_count?: Maybe<ServiceStatCountAggregate>;
|
|
2203
|
+
_max?: Maybe<ServiceStatMaxAggregate>;
|
|
2204
|
+
_min?: Maybe<ServiceStatMinAggregate>;
|
|
2205
|
+
name: Scalars['String']['output'];
|
|
2206
|
+
value: Scalars['String']['output'];
|
|
2207
|
+
};
|
|
2208
|
+
export type ServiceStatMaxAggregate = {
|
|
2209
|
+
__typename?: 'ServiceStatMaxAggregate';
|
|
2210
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2211
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2212
|
+
};
|
|
2213
|
+
export type ServiceStatMaxOrderByAggregateInput = {
|
|
2214
|
+
name?: InputMaybe<SortOrder>;
|
|
2215
|
+
value?: InputMaybe<SortOrder>;
|
|
2216
|
+
};
|
|
2217
|
+
export type ServiceStatMinAggregate = {
|
|
2218
|
+
__typename?: 'ServiceStatMinAggregate';
|
|
2219
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2220
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2221
|
+
};
|
|
2222
|
+
export type ServiceStatMinOrderByAggregateInput = {
|
|
2223
|
+
name?: InputMaybe<SortOrder>;
|
|
2224
|
+
value?: InputMaybe<SortOrder>;
|
|
2225
|
+
};
|
|
2226
|
+
export type ServiceStatOrderByWithAggregationInput = {
|
|
2227
|
+
_count?: InputMaybe<ServiceStatCountOrderByAggregateInput>;
|
|
2228
|
+
_max?: InputMaybe<ServiceStatMaxOrderByAggregateInput>;
|
|
2229
|
+
_min?: InputMaybe<ServiceStatMinOrderByAggregateInput>;
|
|
2230
|
+
name?: InputMaybe<SortOrder>;
|
|
2231
|
+
value?: InputMaybe<SortOrder>;
|
|
2232
|
+
};
|
|
2233
|
+
export type ServiceStatOrderByWithRelationInput = {
|
|
2234
|
+
name?: InputMaybe<SortOrder>;
|
|
2235
|
+
value?: InputMaybe<SortOrder>;
|
|
2236
|
+
};
|
|
2237
|
+
export declare enum ServiceStatScalarFieldEnum {
|
|
2238
|
+
Name = "name",
|
|
2239
|
+
Value = "value"
|
|
2240
|
+
}
|
|
2241
|
+
export type ServiceStatScalarWhereWithAggregatesInput = {
|
|
2242
|
+
AND?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2243
|
+
NOT?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2244
|
+
OR?: InputMaybe<Array<ServiceStatScalarWhereWithAggregatesInput>>;
|
|
2245
|
+
name?: InputMaybe<StringWithAggregatesFilter>;
|
|
2246
|
+
value?: InputMaybe<StringWithAggregatesFilter>;
|
|
2247
|
+
};
|
|
2248
|
+
export type ServiceStatUpdateInput = {
|
|
2249
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2250
|
+
value?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2251
|
+
};
|
|
2252
|
+
export type ServiceStatUpdateManyMutationInput = {
|
|
2253
|
+
name?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2254
|
+
value?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2255
|
+
};
|
|
2256
|
+
export type ServiceStatWhereInput = {
|
|
2257
|
+
AND?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2258
|
+
NOT?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2259
|
+
OR?: InputMaybe<Array<ServiceStatWhereInput>>;
|
|
2260
|
+
name?: InputMaybe<StringFilter>;
|
|
2261
|
+
value?: InputMaybe<StringFilter>;
|
|
2262
|
+
};
|
|
2263
|
+
export type ServiceStatWhereUniqueInput = {
|
|
2264
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2265
|
+
};
|
|
2266
|
+
export declare enum SortOrder {
|
|
2267
|
+
Asc = "asc",
|
|
2268
|
+
Desc = "desc"
|
|
2269
|
+
}
|
|
2270
|
+
export type StringFieldUpdateOperationsInput = {
|
|
2271
|
+
set?: InputMaybe<Scalars['String']['input']>;
|
|
2272
|
+
};
|
|
2273
|
+
export type StringFilter = {
|
|
2274
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
2275
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2276
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
2277
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
2278
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
2279
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2280
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
2281
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
2282
|
+
mode?: InputMaybe<QueryMode>;
|
|
2283
|
+
not?: InputMaybe<NestedStringFilter>;
|
|
2284
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2285
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2286
|
+
};
|
|
2287
|
+
export type StringWithAggregatesFilter = {
|
|
2288
|
+
_count?: InputMaybe<NestedIntFilter>;
|
|
2289
|
+
_max?: InputMaybe<NestedStringFilter>;
|
|
2290
|
+
_min?: InputMaybe<NestedStringFilter>;
|
|
2291
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
2292
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2293
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
2294
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
2295
|
+
gte?: InputMaybe<Scalars['String']['input']>;
|
|
2296
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2297
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
2298
|
+
lte?: InputMaybe<Scalars['String']['input']>;
|
|
2299
|
+
mode?: InputMaybe<QueryMode>;
|
|
2300
|
+
not?: InputMaybe<NestedStringWithAggregatesFilter>;
|
|
2301
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2302
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
2303
|
+
};
|
|
2304
|
+
export type Timestamp = {
|
|
2305
|
+
__typename?: 'Timestamp';
|
|
2306
|
+
from: Scalars['String']['output'];
|
|
2307
|
+
id: Scalars['String']['output'];
|
|
2308
|
+
timestamp: Scalars['Int']['output'];
|
|
2309
|
+
tree: Scalars['String']['output'];
|
|
2310
|
+
txid: Scalars['String']['output'];
|
|
2311
|
+
};
|
|
2312
|
+
export type TimestampAvgAggregate = {
|
|
2313
|
+
__typename?: 'TimestampAvgAggregate';
|
|
2314
|
+
timestamp?: Maybe<Scalars['Float']['output']>;
|
|
2315
|
+
};
|
|
2316
|
+
export type TimestampAvgOrderByAggregateInput = {
|
|
2317
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2318
|
+
};
|
|
2319
|
+
export type TimestampCountAggregate = {
|
|
2320
|
+
__typename?: 'TimestampCountAggregate';
|
|
2321
|
+
_all: Scalars['Int']['output'];
|
|
2322
|
+
from: Scalars['Int']['output'];
|
|
2323
|
+
id: Scalars['Int']['output'];
|
|
2324
|
+
timestamp: Scalars['Int']['output'];
|
|
2325
|
+
tree: Scalars['Int']['output'];
|
|
2326
|
+
txid: Scalars['Int']['output'];
|
|
2327
|
+
};
|
|
2328
|
+
export type TimestampCountOrderByAggregateInput = {
|
|
2329
|
+
from?: InputMaybe<SortOrder>;
|
|
2330
|
+
id?: InputMaybe<SortOrder>;
|
|
2331
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2332
|
+
tree?: InputMaybe<SortOrder>;
|
|
2333
|
+
txid?: InputMaybe<SortOrder>;
|
|
2334
|
+
};
|
|
2335
|
+
export type TimestampCreateInput = {
|
|
2336
|
+
from: Scalars['String']['input'];
|
|
2337
|
+
id: Scalars['String']['input'];
|
|
2338
|
+
timestamp: Scalars['Int']['input'];
|
|
2339
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
2340
|
+
txid: Scalars['String']['input'];
|
|
2341
|
+
};
|
|
2342
|
+
export type TimestampCreateManyInput = {
|
|
2343
|
+
from: Scalars['String']['input'];
|
|
2344
|
+
id: Scalars['String']['input'];
|
|
2345
|
+
timestamp: Scalars['Int']['input'];
|
|
2346
|
+
tree?: InputMaybe<Scalars['String']['input']>;
|
|
2347
|
+
txid: Scalars['String']['input'];
|
|
2348
|
+
};
|
|
2349
|
+
export type TimestampGroupBy = {
|
|
2350
|
+
__typename?: 'TimestampGroupBy';
|
|
2351
|
+
_avg?: Maybe<TimestampAvgAggregate>;
|
|
2352
|
+
_count?: Maybe<TimestampCountAggregate>;
|
|
2353
|
+
_max?: Maybe<TimestampMaxAggregate>;
|
|
2354
|
+
_min?: Maybe<TimestampMinAggregate>;
|
|
2355
|
+
_sum?: Maybe<TimestampSumAggregate>;
|
|
2356
|
+
from: Scalars['String']['output'];
|
|
2357
|
+
id: Scalars['String']['output'];
|
|
2358
|
+
timestamp: Scalars['Int']['output'];
|
|
2359
|
+
tree: Scalars['String']['output'];
|
|
2360
|
+
txid: Scalars['String']['output'];
|
|
2361
|
+
};
|
|
2362
|
+
export type TimestampMaxAggregate = {
|
|
2363
|
+
__typename?: 'TimestampMaxAggregate';
|
|
2364
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2365
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2366
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2367
|
+
tree?: Maybe<Scalars['String']['output']>;
|
|
2368
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2369
|
+
};
|
|
2370
|
+
export type TimestampMaxOrderByAggregateInput = {
|
|
2371
|
+
from?: InputMaybe<SortOrder>;
|
|
2372
|
+
id?: InputMaybe<SortOrder>;
|
|
2373
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2374
|
+
tree?: InputMaybe<SortOrder>;
|
|
2375
|
+
txid?: InputMaybe<SortOrder>;
|
|
2376
|
+
};
|
|
2377
|
+
export type TimestampMinAggregate = {
|
|
2378
|
+
__typename?: 'TimestampMinAggregate';
|
|
2379
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
2380
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
2381
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2382
|
+
tree?: Maybe<Scalars['String']['output']>;
|
|
2383
|
+
txid?: Maybe<Scalars['String']['output']>;
|
|
2384
|
+
};
|
|
2385
|
+
export type TimestampMinOrderByAggregateInput = {
|
|
2386
|
+
from?: InputMaybe<SortOrder>;
|
|
2387
|
+
id?: InputMaybe<SortOrder>;
|
|
2388
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2389
|
+
tree?: InputMaybe<SortOrder>;
|
|
2390
|
+
txid?: InputMaybe<SortOrder>;
|
|
2391
|
+
};
|
|
2392
|
+
export type TimestampOrderByWithAggregationInput = {
|
|
2393
|
+
_avg?: InputMaybe<TimestampAvgOrderByAggregateInput>;
|
|
2394
|
+
_count?: InputMaybe<TimestampCountOrderByAggregateInput>;
|
|
2395
|
+
_max?: InputMaybe<TimestampMaxOrderByAggregateInput>;
|
|
2396
|
+
_min?: InputMaybe<TimestampMinOrderByAggregateInput>;
|
|
2397
|
+
_sum?: InputMaybe<TimestampSumOrderByAggregateInput>;
|
|
2398
|
+
from?: InputMaybe<SortOrder>;
|
|
2399
|
+
id?: InputMaybe<SortOrder>;
|
|
2400
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2401
|
+
tree?: InputMaybe<SortOrder>;
|
|
2402
|
+
txid?: InputMaybe<SortOrder>;
|
|
2403
|
+
};
|
|
2404
|
+
export type TimestampOrderByWithRelationInput = {
|
|
2405
|
+
from?: InputMaybe<SortOrder>;
|
|
2406
|
+
id?: InputMaybe<SortOrder>;
|
|
2407
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2408
|
+
tree?: InputMaybe<SortOrder>;
|
|
2409
|
+
txid?: InputMaybe<SortOrder>;
|
|
2410
|
+
};
|
|
2411
|
+
export declare enum TimestampScalarFieldEnum {
|
|
2412
|
+
From = "from",
|
|
2413
|
+
Id = "id",
|
|
2414
|
+
Timestamp = "timestamp",
|
|
2415
|
+
Tree = "tree",
|
|
2416
|
+
Txid = "txid"
|
|
2417
|
+
}
|
|
2418
|
+
export type TimestampScalarWhereWithAggregatesInput = {
|
|
2419
|
+
AND?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2420
|
+
NOT?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2421
|
+
OR?: InputMaybe<Array<TimestampScalarWhereWithAggregatesInput>>;
|
|
2422
|
+
from?: InputMaybe<StringWithAggregatesFilter>;
|
|
2423
|
+
id?: InputMaybe<StringWithAggregatesFilter>;
|
|
2424
|
+
timestamp?: InputMaybe<IntWithAggregatesFilter>;
|
|
2425
|
+
tree?: InputMaybe<StringWithAggregatesFilter>;
|
|
2426
|
+
txid?: InputMaybe<StringWithAggregatesFilter>;
|
|
2427
|
+
};
|
|
2428
|
+
export type TimestampSumAggregate = {
|
|
2429
|
+
__typename?: 'TimestampSumAggregate';
|
|
2430
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
2431
|
+
};
|
|
2432
|
+
export type TimestampSumOrderByAggregateInput = {
|
|
2433
|
+
timestamp?: InputMaybe<SortOrder>;
|
|
2434
|
+
};
|
|
2435
|
+
export type TimestampUpdateInput = {
|
|
2436
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2437
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2438
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2439
|
+
tree?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2440
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2441
|
+
};
|
|
2442
|
+
export type TimestampUpdateManyMutationInput = {
|
|
2443
|
+
from?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2444
|
+
id?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2445
|
+
timestamp?: InputMaybe<IntFieldUpdateOperationsInput>;
|
|
2446
|
+
tree?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2447
|
+
txid?: InputMaybe<StringFieldUpdateOperationsInput>;
|
|
2448
|
+
};
|
|
2449
|
+
export type TimestampWhereInput = {
|
|
2450
|
+
AND?: InputMaybe<Array<TimestampWhereInput>>;
|
|
2451
|
+
NOT?: InputMaybe<Array<TimestampWhereInput>>;
|
|
2452
|
+
OR?: InputMaybe<Array<TimestampWhereInput>>;
|
|
2453
|
+
from?: InputMaybe<StringFilter>;
|
|
2454
|
+
id?: InputMaybe<StringFilter>;
|
|
2455
|
+
timestamp?: InputMaybe<IntFilter>;
|
|
2456
|
+
tree?: InputMaybe<StringFilter>;
|
|
2457
|
+
txid?: InputMaybe<StringFilter>;
|
|
2458
|
+
};
|
|
2459
|
+
export type TimestampWhereUniqueInput = {
|
|
2460
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
2461
|
+
};
|
|
2462
|
+
export type AttestationFieldsFragment = {
|
|
2463
|
+
__typename?: 'Attestation';
|
|
2464
|
+
id: string;
|
|
2465
|
+
decodedDataJson: string;
|
|
2466
|
+
attester: string;
|
|
2467
|
+
refUID: string;
|
|
2468
|
+
revoked: boolean;
|
|
2469
|
+
schemaId: string;
|
|
2470
|
+
txid: string;
|
|
2471
|
+
timeCreated: number;
|
|
2472
|
+
time: number;
|
|
2473
|
+
isOffchain: boolean;
|
|
2474
|
+
schema: {
|
|
2475
|
+
__typename?: 'Schema';
|
|
2476
|
+
schemaNames: Array<{
|
|
2477
|
+
__typename?: 'SchemaName';
|
|
2478
|
+
name: string;
|
|
2479
|
+
}>;
|
|
2480
|
+
};
|
|
2481
|
+
} & {
|
|
2482
|
+
' $fragmentName'?: 'AttestationFieldsFragment';
|
|
2483
|
+
};
|
|
2484
|
+
export type SchemaFieldsFragment = {
|
|
2485
|
+
__typename?: 'Schema';
|
|
2486
|
+
id: string;
|
|
2487
|
+
resolver: string;
|
|
2488
|
+
revocable: boolean;
|
|
2489
|
+
schema: string;
|
|
2490
|
+
index: string;
|
|
2491
|
+
time: number;
|
|
2492
|
+
txid: string;
|
|
2493
|
+
creator: string;
|
|
2494
|
+
schemaNames: Array<{
|
|
2495
|
+
__typename?: 'SchemaName';
|
|
2496
|
+
name: string;
|
|
2497
|
+
}>;
|
|
2498
|
+
} & {
|
|
2499
|
+
' $fragmentName'?: 'SchemaFieldsFragment';
|
|
2500
|
+
};
|
|
2501
|
+
export type GetSchemasQueryVariables = Exact<{
|
|
2502
|
+
where: SchemaWhereInput;
|
|
2503
|
+
}>;
|
|
2504
|
+
export type GetSchemasQuery = {
|
|
2505
|
+
__typename?: 'Query';
|
|
2506
|
+
schemas: Array<{
|
|
2507
|
+
__typename?: 'Schema';
|
|
2508
|
+
id: string;
|
|
2509
|
+
schema: string;
|
|
2510
|
+
schemaNames: Array<{
|
|
2511
|
+
__typename?: 'SchemaName';
|
|
2512
|
+
name: string;
|
|
2513
|
+
}>;
|
|
2514
|
+
}>;
|
|
2515
|
+
};
|
|
2516
|
+
export type GetSchemaByNameQueryVariables = Exact<{
|
|
2517
|
+
where: SchemaWhereInput;
|
|
2518
|
+
}>;
|
|
2519
|
+
export type GetSchemaByNameQuery = {
|
|
2520
|
+
__typename?: 'Query';
|
|
2521
|
+
schemas: Array<{
|
|
2522
|
+
__typename?: 'Schema';
|
|
2523
|
+
id: string;
|
|
2524
|
+
schema: string;
|
|
2525
|
+
schemaNames: Array<{
|
|
2526
|
+
__typename?: 'SchemaName';
|
|
2527
|
+
name: string;
|
|
2528
|
+
}>;
|
|
2529
|
+
}>;
|
|
2530
|
+
};
|
|
2531
|
+
export type GetSeedsQueryVariables = Exact<{
|
|
2532
|
+
where: AttestationWhereInput;
|
|
2533
|
+
take?: InputMaybe<Scalars['Int']['input']>;
|
|
2534
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2535
|
+
}>;
|
|
2536
|
+
export type GetSeedsQuery = {
|
|
2537
|
+
__typename?: 'Query';
|
|
2538
|
+
itemSeeds: Array<{
|
|
2539
|
+
__typename?: 'Attestation';
|
|
2540
|
+
id: string;
|
|
2541
|
+
decodedDataJson: string;
|
|
2542
|
+
attester: string;
|
|
2543
|
+
refUID: string;
|
|
2544
|
+
revoked: boolean;
|
|
2545
|
+
revocationTime: number;
|
|
2546
|
+
schemaId: string;
|
|
2547
|
+
timeCreated: number;
|
|
2548
|
+
isOffchain: boolean;
|
|
2549
|
+
schema: {
|
|
2550
|
+
__typename?: 'Schema';
|
|
2551
|
+
schemaNames: Array<{
|
|
2552
|
+
__typename?: 'SchemaName';
|
|
2553
|
+
name: string;
|
|
2554
|
+
}>;
|
|
2555
|
+
};
|
|
2556
|
+
}>;
|
|
2557
|
+
};
|
|
2558
|
+
export type GetSeedIdsQueryVariables = Exact<{
|
|
2559
|
+
where: AttestationWhereInput;
|
|
2560
|
+
}>;
|
|
2561
|
+
export type GetSeedIdsQuery = {
|
|
2562
|
+
__typename?: 'Query';
|
|
2563
|
+
itemSeedIds: Array<{
|
|
2564
|
+
__typename?: 'Attestation';
|
|
2565
|
+
id: string;
|
|
2566
|
+
}>;
|
|
2567
|
+
};
|
|
2568
|
+
export type GetStorageTransactionIdQueryVariables = Exact<{
|
|
2569
|
+
where: AttestationWhereInput;
|
|
2570
|
+
}>;
|
|
2571
|
+
export type GetStorageTransactionIdQuery = {
|
|
2572
|
+
__typename?: 'Query';
|
|
2573
|
+
storageTransactionId: Array<{
|
|
2574
|
+
__typename?: 'Attestation';
|
|
2575
|
+
id: string;
|
|
2576
|
+
decodedDataJson: string;
|
|
2577
|
+
}>;
|
|
2578
|
+
};
|
|
2579
|
+
export type GetVersionsQueryVariables = Exact<{
|
|
2580
|
+
where: AttestationWhereInput;
|
|
2581
|
+
}>;
|
|
2582
|
+
export type GetVersionsQuery = {
|
|
2583
|
+
__typename?: 'Query';
|
|
2584
|
+
itemVersions: Array<({
|
|
2585
|
+
__typename?: 'Attestation';
|
|
2586
|
+
} & {
|
|
2587
|
+
' $fragmentRefs'?: {
|
|
2588
|
+
'AttestationFieldsFragment': AttestationFieldsFragment;
|
|
2589
|
+
};
|
|
2590
|
+
})>;
|
|
2591
|
+
};
|
|
2592
|
+
export type GetPropertiesQueryVariables = Exact<{
|
|
2593
|
+
where: AttestationWhereInput;
|
|
2594
|
+
}>;
|
|
2595
|
+
export type GetPropertiesQuery = {
|
|
2596
|
+
__typename?: 'Query';
|
|
2597
|
+
itemProperties: Array<({
|
|
2598
|
+
__typename?: 'Attestation';
|
|
2599
|
+
} & {
|
|
2600
|
+
' $fragmentRefs'?: {
|
|
2601
|
+
'AttestationFieldsFragment': AttestationFieldsFragment;
|
|
2602
|
+
};
|
|
2603
|
+
})>;
|
|
2604
|
+
};
|
|
2605
|
+
export type GetAllPropertiesForAllVersionsQueryVariables = Exact<{
|
|
2606
|
+
where: AttestationWhereInput;
|
|
2607
|
+
}>;
|
|
2608
|
+
export type GetAllPropertiesForAllVersionsQuery = {
|
|
2609
|
+
__typename?: 'Query';
|
|
2610
|
+
allProperties: Array<({
|
|
2611
|
+
__typename?: 'Attestation';
|
|
2612
|
+
} & {
|
|
2613
|
+
' $fragmentRefs'?: {
|
|
2614
|
+
'AttestationFieldsFragment': AttestationFieldsFragment;
|
|
2615
|
+
};
|
|
2616
|
+
})>;
|
|
2617
|
+
};
|
|
2618
|
+
export type GetFilesMetadataQueryVariables = Exact<{
|
|
2619
|
+
where: AttestationWhereInput;
|
|
2620
|
+
}>;
|
|
2621
|
+
export type GetFilesMetadataQuery = {
|
|
2622
|
+
__typename?: 'Query';
|
|
2623
|
+
filesMetadata: Array<({
|
|
2624
|
+
__typename?: 'Attestation';
|
|
2625
|
+
} & {
|
|
2626
|
+
' $fragmentRefs'?: {
|
|
2627
|
+
'AttestationFieldsFragment': AttestationFieldsFragment;
|
|
2628
|
+
};
|
|
2629
|
+
})>;
|
|
2630
|
+
};
|
|
2631
|
+
export type GetImageSeedsQueryVariables = Exact<{
|
|
2632
|
+
where: AttestationWhereInput;
|
|
2633
|
+
}>;
|
|
2634
|
+
export type GetImageSeedsQuery = {
|
|
2635
|
+
__typename?: 'Query';
|
|
2636
|
+
imageSeeds: Array<{
|
|
2637
|
+
__typename?: 'Attestation';
|
|
2638
|
+
id: string;
|
|
2639
|
+
decodedDataJson: string;
|
|
2640
|
+
attester: string;
|
|
2641
|
+
refUID: string;
|
|
2642
|
+
revoked: boolean;
|
|
2643
|
+
schemaId: string;
|
|
2644
|
+
txid: string;
|
|
2645
|
+
timeCreated: number;
|
|
2646
|
+
time: number;
|
|
2647
|
+
isOffchain: boolean;
|
|
2648
|
+
schema: {
|
|
2649
|
+
__typename?: 'Schema';
|
|
2650
|
+
schemaNames: Array<{
|
|
2651
|
+
__typename?: 'SchemaName';
|
|
2652
|
+
name: string;
|
|
2653
|
+
}>;
|
|
2654
|
+
};
|
|
2655
|
+
}>;
|
|
2656
|
+
};
|
|
2657
|
+
export type GetImageVersionsQueryVariables = Exact<{
|
|
2658
|
+
where: AttestationWhereInput;
|
|
2659
|
+
}>;
|
|
2660
|
+
export type GetImageVersionsQuery = {
|
|
2661
|
+
__typename?: 'Query';
|
|
2662
|
+
imageVersions: Array<({
|
|
2663
|
+
__typename?: 'Attestation';
|
|
2664
|
+
} & {
|
|
2665
|
+
' $fragmentRefs'?: {
|
|
2666
|
+
'AttestationFieldsFragment': AttestationFieldsFragment;
|
|
2667
|
+
};
|
|
2668
|
+
})>;
|
|
2669
|
+
};
|
|
2670
|
+
export declare const AttestationFieldsFragmentDoc: DocumentNode<AttestationFieldsFragment, unknown>;
|
|
2671
|
+
export declare const SchemaFieldsFragmentDoc: DocumentNode<SchemaFieldsFragment, unknown>;
|
|
2672
|
+
export declare const GetSchemasDocument: DocumentNode<GetSchemasQuery, GetSchemasQueryVariables>;
|
|
2673
|
+
export declare const GetSchemaByNameDocument: DocumentNode<GetSchemaByNameQuery, GetSchemaByNameQueryVariables>;
|
|
2674
|
+
export declare const GetSeedsDocument: DocumentNode<GetSeedsQuery, GetSeedsQueryVariables>;
|
|
2675
|
+
export declare const GetSeedIdsDocument: DocumentNode<GetSeedIdsQuery, GetSeedIdsQueryVariables>;
|
|
2676
|
+
export declare const GetStorageTransactionIdDocument: DocumentNode<GetStorageTransactionIdQuery, GetStorageTransactionIdQueryVariables>;
|
|
2677
|
+
export declare const GetVersionsDocument: DocumentNode<GetVersionsQuery, GetVersionsQueryVariables>;
|
|
2678
|
+
export declare const GetPropertiesDocument: DocumentNode<GetPropertiesQuery, GetPropertiesQueryVariables>;
|
|
2679
|
+
export declare const GetAllPropertiesForAllVersionsDocument: DocumentNode<GetAllPropertiesForAllVersionsQuery, GetAllPropertiesForAllVersionsQueryVariables>;
|
|
2680
|
+
export declare const GetFilesMetadataDocument: DocumentNode<GetFilesMetadataQuery, GetFilesMetadataQueryVariables>;
|
|
2681
|
+
export declare const GetImageSeedsDocument: DocumentNode<GetImageSeedsQuery, GetImageSeedsQueryVariables>;
|
|
2682
|
+
export declare const GetImageVersionsDocument: DocumentNode<GetImageVersionsQuery, GetImageVersionsQueryVariables>;
|
|
2683
|
+
//# sourceMappingURL=graphql.d.ts.map
|