UNPKG

52.5 kBTypeScriptView Raw
1export interface CheckPartialSchema_service_checkPartialSchema_compositionValidationResult_compositionValidationDetails {
2 __typename: "CompositionValidationDetails";
3 schemaHash: string | null;
4}
5export interface CheckPartialSchema_service_checkPartialSchema_compositionValidationResult_errors {
6 __typename: "SchemaCompositionError";
7 message: string;
8}
9export interface CheckPartialSchema_service_checkPartialSchema_compositionValidationResult {
10 __typename: "CompositionValidationResult";
11 compositionValidationDetails: CheckPartialSchema_service_checkPartialSchema_compositionValidationResult_compositionValidationDetails | null;
12 graphCompositionID: string;
13 errors: CheckPartialSchema_service_checkPartialSchema_compositionValidationResult_errors[];
14}
15export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_affectedClients {
16 __typename: "AffectedClient";
17}
18export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_affectedQueries {
19 __typename: "AffectedQuery";
20}
21export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_changes {
22 __typename: "Change";
23 severity: ChangeSeverity;
24 code: string;
25 description: string;
26}
27export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_validationConfig {
28 __typename: "SchemaDiffValidationConfig";
29 from: any | null;
30 to: any | null;
31 queryCountThreshold: number | null;
32 queryCountThresholdPercentage: number | null;
33}
34export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious {
35 __typename: "SchemaDiff";
36 severity: ChangeSeverity;
37 affectedClients: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_affectedClients[] | null;
38 affectedQueries: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_affectedQueries[] | null;
39 numberOfCheckedOperations: number | null;
40 changes: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_changes[];
41 validationConfig: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious_validationConfig | null;
42}
43export interface CheckPartialSchema_service_checkPartialSchema_checkSchemaResult {
44 __typename: "CheckSchemaResult";
45 diffToPrevious: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult_diffToPrevious;
46 targetUrl: string | null;
47}
48export interface CheckPartialSchema_service_checkPartialSchema {
49 __typename: "CheckPartialSchemaResult";
50 compositionValidationResult: CheckPartialSchema_service_checkPartialSchema_compositionValidationResult;
51 checkSchemaResult: CheckPartialSchema_service_checkPartialSchema_checkSchemaResult | null;
52}
53export interface CheckPartialSchema_service {
54 __typename: "ServiceMutation";
55 checkPartialSchema: CheckPartialSchema_service_checkPartialSchema;
56}
57export interface CheckPartialSchema {
58 service: CheckPartialSchema_service | null;
59}
60export interface CheckPartialSchemaVariables {
61 id: string;
62 graphVariant: string;
63 implementingServiceName: string;
64 partialSchema: PartialSchemaInput;
65 gitContext?: GitContextInput | null;
66 historicParameters?: HistoricQueryParameters | null;
67}
68export interface CheckSchema_service_checkSchema_diffToPrevious_affectedClients {
69 __typename: "AffectedClient";
70}
71export interface CheckSchema_service_checkSchema_diffToPrevious_affectedQueries {
72 __typename: "AffectedQuery";
73}
74export interface CheckSchema_service_checkSchema_diffToPrevious_changes {
75 __typename: "Change";
76 severity: ChangeSeverity;
77 code: string;
78 description: string;
79}
80export interface CheckSchema_service_checkSchema_diffToPrevious_validationConfig {
81 __typename: "SchemaDiffValidationConfig";
82 from: any | null;
83 to: any | null;
84 queryCountThreshold: number | null;
85 queryCountThresholdPercentage: number | null;
86}
87export interface CheckSchema_service_checkSchema_diffToPrevious {
88 __typename: "SchemaDiff";
89 severity: ChangeSeverity;
90 affectedClients: CheckSchema_service_checkSchema_diffToPrevious_affectedClients[] | null;
91 affectedQueries: CheckSchema_service_checkSchema_diffToPrevious_affectedQueries[] | null;
92 numberOfCheckedOperations: number | null;
93 changes: CheckSchema_service_checkSchema_diffToPrevious_changes[];
94 validationConfig: CheckSchema_service_checkSchema_diffToPrevious_validationConfig | null;
95}
96export interface CheckSchema_service_checkSchema {
97 __typename: "CheckSchemaResult";
98 targetUrl: string | null;
99 diffToPrevious: CheckSchema_service_checkSchema_diffToPrevious;
100}
101export interface CheckSchema_service {
102 __typename: "ServiceMutation";
103 checkSchema: CheckSchema_service_checkSchema;
104}
105export interface CheckSchema {
106 service: CheckSchema_service | null;
107}
108export interface CheckSchemaVariables {
109 id: string;
110 schema?: IntrospectionSchemaInput | null;
111 schemaHash?: string | null;
112 tag?: string | null;
113 gitContext?: GitContextInput | null;
114 historicParameters?: HistoricQueryParameters | null;
115}
116export interface ListServices_service_implementingServices_NonFederatedImplementingService {
117 __typename: "NonFederatedImplementingService";
118}
119export interface ListServices_service_implementingServices_FederatedImplementingServices_services {
120 __typename: "FederatedImplementingService";
121 graphID: string;
122 graphVariant: string;
123 name: string;
124 url: string | null;
125 updatedAt: any;
126}
127export interface ListServices_service_implementingServices_FederatedImplementingServices {
128 __typename: "FederatedImplementingServices";
129 services: ListServices_service_implementingServices_FederatedImplementingServices_services[];
130}
131export declare type ListServices_service_implementingServices = ListServices_service_implementingServices_NonFederatedImplementingService | ListServices_service_implementingServices_FederatedImplementingServices;
132export interface ListServices_service {
133 __typename: "Service";
134 implementingServices: ListServices_service_implementingServices | null;
135}
136export interface ListServices {
137 frontendUrlRoot: string;
138 service: ListServices_service | null;
139}
140export interface ListServicesVariables {
141 id: string;
142 graphVariant: string;
143}
144export interface RegisterOperations_service_registerOperationsWithResponse_invalidOperations_errors {
145 __typename: "OperationValidationError";
146 message: string;
147}
148export interface RegisterOperations_service_registerOperationsWithResponse_invalidOperations {
149 __typename: "InvalidOperation";
150 errors: RegisterOperations_service_registerOperationsWithResponse_invalidOperations_errors[] | null;
151 signature: string;
152}
153export interface RegisterOperations_service_registerOperationsWithResponse_newOperations {
154 __typename: "RegisteredOperation";
155 signature: string;
156}
157export interface RegisterOperations_service_registerOperationsWithResponse {
158 __typename: "RegisterOperationsMutationResponse";
159 invalidOperations: RegisterOperations_service_registerOperationsWithResponse_invalidOperations[] | null;
160 newOperations: RegisterOperations_service_registerOperationsWithResponse_newOperations[] | null;
161 registrationSuccess: boolean;
162}
163export interface RegisterOperations_service {
164 __typename: "ServiceMutation";
165 registerOperationsWithResponse: RegisterOperations_service_registerOperationsWithResponse | null;
166}
167export interface RegisterOperations {
168 service: RegisterOperations_service | null;
169}
170export interface RegisterOperationsVariables {
171 id: string;
172 clientIdentity: RegisteredClientIdentityInput;
173 operations: RegisteredOperationInput[];
174 manifestVersion: number;
175 graphVariant?: string | null;
176}
177export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_compositionConfig_implementingServiceLocations {
178 __typename: "ImplementingServiceLocation";
179 name: string;
180 path: string;
181}
182export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_compositionConfig {
183 __typename: "CompositionConfig";
184 implementingServiceLocations: RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_compositionConfig_implementingServiceLocations[];
185}
186export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors_locations {
187 __typename: "SourceLocation";
188 column: number;
189 line: number;
190}
191export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors {
192 __typename: "SchemaCompositionError";
193 locations: (RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors_locations | null)[];
194 message: string;
195}
196export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition {
197 __typename: "CompositionAndRemoveResult";
198 compositionConfig: RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_compositionConfig | null;
199 errors: (RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors | null)[];
200 updatedGateway: boolean;
201}
202export interface RemoveServiceAndCompose_service {
203 __typename: "ServiceMutation";
204 removeImplementingServiceAndTriggerComposition: RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition;
205}
206export interface RemoveServiceAndCompose {
207 service: RemoveServiceAndCompose_service | null;
208}
209export interface RemoveServiceAndComposeVariables {
210 id: string;
211 graphVariant: string;
212 name: string;
213}
214export interface SchemaTagsAndFieldStats_service_schemaTags {
215 __typename: "SchemaTag";
216 tag: string;
217}
218export interface SchemaTagsAndFieldStats_service_stats_fieldStats_groupBy {
219 __typename: "ServiceFieldStatsDimensions";
220 field: string | null;
221}
222export interface SchemaTagsAndFieldStats_service_stats_fieldStats_metrics_fieldHistogram {
223 __typename: "DurationHistogram";
224 durationMs: number | null;
225}
226export interface SchemaTagsAndFieldStats_service_stats_fieldStats_metrics {
227 __typename: "ServiceFieldStatsMetrics";
228 fieldHistogram: SchemaTagsAndFieldStats_service_stats_fieldStats_metrics_fieldHistogram;
229}
230export interface SchemaTagsAndFieldStats_service_stats_fieldStats {
231 __typename: "ServiceFieldStatsRecord";
232 groupBy: SchemaTagsAndFieldStats_service_stats_fieldStats_groupBy;
233 metrics: SchemaTagsAndFieldStats_service_stats_fieldStats_metrics;
234}
235export interface SchemaTagsAndFieldStats_service_stats {
236 __typename: "ServiceStatsWindow";
237 fieldStats: SchemaTagsAndFieldStats_service_stats_fieldStats[];
238}
239export interface SchemaTagsAndFieldStats_service {
240 __typename: "Service";
241 schemaTags: SchemaTagsAndFieldStats_service_schemaTags[] | null;
242 stats: SchemaTagsAndFieldStats_service_stats;
243}
244export interface SchemaTagsAndFieldStats {
245 service: SchemaTagsAndFieldStats_service | null;
246}
247export interface SchemaTagsAndFieldStatsVariables {
248 id: string;
249}
250export interface UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition_compositionConfig {
251 __typename: "CompositionConfig";
252 schemaHash: string;
253}
254export interface UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition_errors {
255 __typename: "SchemaCompositionError";
256 message: string;
257}
258export interface UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition {
259 __typename: "CompositionAndUpsertResult";
260 compositionConfig: UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition_compositionConfig | null;
261 errors: (UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition_errors | null)[];
262 didUpdateGateway: boolean;
263 serviceWasCreated: boolean;
264}
265export interface UploadAndComposePartialSchema_service {
266 __typename: "ServiceMutation";
267 upsertImplementingServiceAndTriggerComposition: UploadAndComposePartialSchema_service_upsertImplementingServiceAndTriggerComposition;
268}
269export interface UploadAndComposePartialSchema {
270 service: UploadAndComposePartialSchema_service | null;
271}
272export interface UploadAndComposePartialSchemaVariables {
273 id: string;
274 graphVariant: string;
275 name: string;
276 url: string;
277 revision: string;
278 activePartialSchema: PartialSchemaInput;
279}
280export interface UploadSchema_service_uploadSchema_tag_schema {
281 __typename: "Schema";
282 hash: string;
283}
284export interface UploadSchema_service_uploadSchema_tag {
285 __typename: "SchemaTag";
286 tag: string;
287 schema: UploadSchema_service_uploadSchema_tag_schema;
288}
289export interface UploadSchema_service_uploadSchema {
290 __typename: "UploadSchemaMutationResponse";
291 code: string;
292 message: string;
293 success: boolean;
294 tag: UploadSchema_service_uploadSchema_tag | null;
295}
296export interface UploadSchema_service {
297 __typename: "ServiceMutation";
298 uploadSchema: UploadSchema_service_uploadSchema | null;
299}
300export interface UploadSchema {
301 service: UploadSchema_service | null;
302}
303export interface UploadSchemaVariables {
304 id: string;
305 schema: IntrospectionSchemaInput;
306 tag: string;
307 gitContext?: GitContextInput | null;
308}
309export interface ValidateOperations_service_validateOperations_validationResults_operation {
310 __typename: "OperationDocument";
311 name: string | null;
312}
313export interface ValidateOperations_service_validateOperations_validationResults {
314 __typename: "ValidationResult";
315 type: ValidationErrorType;
316 code: ValidationErrorCode;
317 description: string;
318 operation: ValidateOperations_service_validateOperations_validationResults_operation;
319}
320export interface ValidateOperations_service_validateOperations {
321 __typename: "ValidateOperationsResult";
322 validationResults: ValidateOperations_service_validateOperations_validationResults[];
323}
324export interface ValidateOperations_service {
325 __typename: "ServiceMutation";
326 validateOperations: ValidateOperations_service_validateOperations;
327}
328export interface ValidateOperations {
329 service: ValidateOperations_service | null;
330}
331export interface ValidateOperationsVariables {
332 id: string;
333 operations: OperationDocumentInput[];
334 tag?: string | null;
335 gitContext?: GitContextInput | null;
336}
337export interface GetSchemaByTag_service_schema___schema_queryType {
338 __typename: "IntrospectionType";
339 name: string | null;
340}
341export interface GetSchemaByTag_service_schema___schema_mutationType {
342 __typename: "IntrospectionType";
343 name: string | null;
344}
345export interface GetSchemaByTag_service_schema___schema_subscriptionType {
346 __typename: "IntrospectionType";
347 name: string | null;
348}
349export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
350 __typename: "IntrospectionType";
351 kind: IntrospectionTypeKind | null;
352 name: string | null;
353}
354export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType {
355 __typename: "IntrospectionType";
356 kind: IntrospectionTypeKind | null;
357 name: string | null;
358 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
359}
360export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType {
361 __typename: "IntrospectionType";
362 kind: IntrospectionTypeKind | null;
363 name: string | null;
364 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
365}
366export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType {
367 __typename: "IntrospectionType";
368 kind: IntrospectionTypeKind | null;
369 name: string | null;
370 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType_ofType | null;
371}
372export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType {
373 __typename: "IntrospectionType";
374 kind: IntrospectionTypeKind | null;
375 name: string | null;
376 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType_ofType | null;
377}
378export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType {
379 __typename: "IntrospectionType";
380 kind: IntrospectionTypeKind | null;
381 name: string | null;
382 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType_ofType | null;
383}
384export interface GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType {
385 __typename: "IntrospectionType";
386 kind: IntrospectionTypeKind | null;
387 name: string | null;
388 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType_ofType | null;
389}
390export interface GetSchemaByTag_service_schema___schema_types_fields_args_type {
391 __typename: "IntrospectionType";
392 kind: IntrospectionTypeKind | null;
393 name: string | null;
394 ofType: GetSchemaByTag_service_schema___schema_types_fields_args_type_ofType | null;
395}
396export interface GetSchemaByTag_service_schema___schema_types_fields_args {
397 __typename: "IntrospectionInputValue";
398 name: string;
399 description: string | null;
400 type: GetSchemaByTag_service_schema___schema_types_fields_args_type;
401 defaultValue: string | null;
402}
403export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
404 __typename: "IntrospectionType";
405 kind: IntrospectionTypeKind | null;
406 name: string | null;
407}
408export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType_ofType {
409 __typename: "IntrospectionType";
410 kind: IntrospectionTypeKind | null;
411 name: string | null;
412 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
413}
414export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType {
415 __typename: "IntrospectionType";
416 kind: IntrospectionTypeKind | null;
417 name: string | null;
418 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
419}
420export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType {
421 __typename: "IntrospectionType";
422 kind: IntrospectionTypeKind | null;
423 name: string | null;
424 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType_ofType | null;
425}
426export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType {
427 __typename: "IntrospectionType";
428 kind: IntrospectionTypeKind | null;
429 name: string | null;
430 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType_ofType | null;
431}
432export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType {
433 __typename: "IntrospectionType";
434 kind: IntrospectionTypeKind | null;
435 name: string | null;
436 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType_ofType | null;
437}
438export interface GetSchemaByTag_service_schema___schema_types_fields_type_ofType {
439 __typename: "IntrospectionType";
440 kind: IntrospectionTypeKind | null;
441 name: string | null;
442 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType_ofType | null;
443}
444export interface GetSchemaByTag_service_schema___schema_types_fields_type {
445 __typename: "IntrospectionType";
446 kind: IntrospectionTypeKind | null;
447 name: string | null;
448 ofType: GetSchemaByTag_service_schema___schema_types_fields_type_ofType | null;
449}
450export interface GetSchemaByTag_service_schema___schema_types_fields {
451 __typename: "IntrospectionField";
452 name: string;
453 description: string | null;
454 args: GetSchemaByTag_service_schema___schema_types_fields_args[];
455 type: GetSchemaByTag_service_schema___schema_types_fields_type;
456 isDeprecated: boolean;
457 deprecationReason: string | null;
458}
459export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
460 __typename: "IntrospectionType";
461 kind: IntrospectionTypeKind | null;
462 name: string | null;
463}
464export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType {
465 __typename: "IntrospectionType";
466 kind: IntrospectionTypeKind | null;
467 name: string | null;
468 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
469}
470export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType {
471 __typename: "IntrospectionType";
472 kind: IntrospectionTypeKind | null;
473 name: string | null;
474 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
475}
476export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType {
477 __typename: "IntrospectionType";
478 kind: IntrospectionTypeKind | null;
479 name: string | null;
480 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType_ofType | null;
481}
482export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType {
483 __typename: "IntrospectionType";
484 kind: IntrospectionTypeKind | null;
485 name: string | null;
486 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType_ofType | null;
487}
488export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType {
489 __typename: "IntrospectionType";
490 kind: IntrospectionTypeKind | null;
491 name: string | null;
492 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType_ofType | null;
493}
494export interface GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType {
495 __typename: "IntrospectionType";
496 kind: IntrospectionTypeKind | null;
497 name: string | null;
498 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType_ofType | null;
499}
500export interface GetSchemaByTag_service_schema___schema_types_inputFields_type {
501 __typename: "IntrospectionType";
502 kind: IntrospectionTypeKind | null;
503 name: string | null;
504 ofType: GetSchemaByTag_service_schema___schema_types_inputFields_type_ofType | null;
505}
506export interface GetSchemaByTag_service_schema___schema_types_inputFields {
507 __typename: "IntrospectionInputValue";
508 name: string;
509 description: string | null;
510 type: GetSchemaByTag_service_schema___schema_types_inputFields_type;
511 defaultValue: string | null;
512}
513export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
514 __typename: "IntrospectionType";
515 kind: IntrospectionTypeKind | null;
516 name: string | null;
517}
518export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType_ofType {
519 __typename: "IntrospectionType";
520 kind: IntrospectionTypeKind | null;
521 name: string | null;
522 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
523}
524export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType {
525 __typename: "IntrospectionType";
526 kind: IntrospectionTypeKind | null;
527 name: string | null;
528 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType_ofType | null;
529}
530export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType {
531 __typename: "IntrospectionType";
532 kind: IntrospectionTypeKind | null;
533 name: string | null;
534 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType_ofType | null;
535}
536export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType {
537 __typename: "IntrospectionType";
538 kind: IntrospectionTypeKind | null;
539 name: string | null;
540 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType_ofType | null;
541}
542export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType {
543 __typename: "IntrospectionType";
544 kind: IntrospectionTypeKind | null;
545 name: string | null;
546 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType_ofType | null;
547}
548export interface GetSchemaByTag_service_schema___schema_types_interfaces_ofType {
549 __typename: "IntrospectionType";
550 kind: IntrospectionTypeKind | null;
551 name: string | null;
552 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType_ofType | null;
553}
554export interface GetSchemaByTag_service_schema___schema_types_interfaces {
555 __typename: "IntrospectionType";
556 kind: IntrospectionTypeKind | null;
557 name: string | null;
558 ofType: GetSchemaByTag_service_schema___schema_types_interfaces_ofType | null;
559}
560export interface GetSchemaByTag_service_schema___schema_types_enumValues {
561 __typename: "IntrospectionEnumValue";
562 name: string;
563 description: string | null;
564 isDeprecated: boolean;
565 deprecationReason: string | null;
566}
567export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
568 __typename: "IntrospectionType";
569 kind: IntrospectionTypeKind | null;
570 name: string | null;
571}
572export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType {
573 __typename: "IntrospectionType";
574 kind: IntrospectionTypeKind | null;
575 name: string | null;
576 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
577}
578export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType {
579 __typename: "IntrospectionType";
580 kind: IntrospectionTypeKind | null;
581 name: string | null;
582 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType | null;
583}
584export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType {
585 __typename: "IntrospectionType";
586 kind: IntrospectionTypeKind | null;
587 name: string | null;
588 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType_ofType | null;
589}
590export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType {
591 __typename: "IntrospectionType";
592 kind: IntrospectionTypeKind | null;
593 name: string | null;
594 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType_ofType | null;
595}
596export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType {
597 __typename: "IntrospectionType";
598 kind: IntrospectionTypeKind | null;
599 name: string | null;
600 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType_ofType | null;
601}
602export interface GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType {
603 __typename: "IntrospectionType";
604 kind: IntrospectionTypeKind | null;
605 name: string | null;
606 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType_ofType | null;
607}
608export interface GetSchemaByTag_service_schema___schema_types_possibleTypes {
609 __typename: "IntrospectionType";
610 kind: IntrospectionTypeKind | null;
611 name: string | null;
612 ofType: GetSchemaByTag_service_schema___schema_types_possibleTypes_ofType | null;
613}
614export interface GetSchemaByTag_service_schema___schema_types {
615 __typename: "IntrospectionType";
616 kind: IntrospectionTypeKind | null;
617 name: string | null;
618 description: string | null;
619 fields: GetSchemaByTag_service_schema___schema_types_fields[] | null;
620 inputFields: GetSchemaByTag_service_schema___schema_types_inputFields[] | null;
621 interfaces: GetSchemaByTag_service_schema___schema_types_interfaces[] | null;
622 enumValues: GetSchemaByTag_service_schema___schema_types_enumValues[] | null;
623 possibleTypes: GetSchemaByTag_service_schema___schema_types_possibleTypes[] | null;
624}
625export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
626 __typename: "IntrospectionType";
627 kind: IntrospectionTypeKind | null;
628 name: string | null;
629}
630export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType_ofType {
631 __typename: "IntrospectionType";
632 kind: IntrospectionTypeKind | null;
633 name: string | null;
634 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
635}
636export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType {
637 __typename: "IntrospectionType";
638 kind: IntrospectionTypeKind | null;
639 name: string | null;
640 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
641}
642export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType {
643 __typename: "IntrospectionType";
644 kind: IntrospectionTypeKind | null;
645 name: string | null;
646 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType_ofType | null;
647}
648export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType {
649 __typename: "IntrospectionType";
650 kind: IntrospectionTypeKind | null;
651 name: string | null;
652 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType_ofType | null;
653}
654export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType {
655 __typename: "IntrospectionType";
656 kind: IntrospectionTypeKind | null;
657 name: string | null;
658 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType_ofType | null;
659}
660export interface GetSchemaByTag_service_schema___schema_directives_args_type_ofType {
661 __typename: "IntrospectionType";
662 kind: IntrospectionTypeKind | null;
663 name: string | null;
664 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType_ofType | null;
665}
666export interface GetSchemaByTag_service_schema___schema_directives_args_type {
667 __typename: "IntrospectionType";
668 kind: IntrospectionTypeKind | null;
669 name: string | null;
670 ofType: GetSchemaByTag_service_schema___schema_directives_args_type_ofType | null;
671}
672export interface GetSchemaByTag_service_schema___schema_directives_args {
673 __typename: "IntrospectionInputValue";
674 name: string;
675 description: string | null;
676 type: GetSchemaByTag_service_schema___schema_directives_args_type;
677 defaultValue: string | null;
678}
679export interface GetSchemaByTag_service_schema___schema_directives {
680 __typename: "IntrospectionDirective";
681 name: string;
682 description: string | null;
683 locations: IntrospectionDirectiveLocation[];
684 args: GetSchemaByTag_service_schema___schema_directives_args[];
685}
686export interface GetSchemaByTag_service_schema___schema {
687 __typename: "IntrospectionSchema";
688 queryType: GetSchemaByTag_service_schema___schema_queryType;
689 mutationType: GetSchemaByTag_service_schema___schema_mutationType | null;
690 subscriptionType: GetSchemaByTag_service_schema___schema_subscriptionType | null;
691 types: GetSchemaByTag_service_schema___schema_types[];
692 directives: GetSchemaByTag_service_schema___schema_directives[];
693}
694export interface GetSchemaByTag_service_schema {
695 __typename: "Schema";
696 hash: string;
697 __schema: GetSchemaByTag_service_schema___schema;
698}
699export interface GetSchemaByTag_service {
700 __typename: "Service";
701 schema: GetSchemaByTag_service_schema | null;
702}
703export interface GetSchemaByTag {
704 service: GetSchemaByTag_service | null;
705}
706export interface GetSchemaByTagVariables {
707 tag: string;
708 id: string;
709}
710export interface IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
711 __typename: "IntrospectionType";
712 kind: IntrospectionTypeKind | null;
713 name: string | null;
714}
715export interface IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType {
716 __typename: "IntrospectionType";
717 kind: IntrospectionTypeKind | null;
718 name: string | null;
719 ofType: IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
720}
721export interface IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType {
722 __typename: "IntrospectionType";
723 kind: IntrospectionTypeKind | null;
724 name: string | null;
725 ofType: IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
726}
727export interface IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType {
728 __typename: "IntrospectionType";
729 kind: IntrospectionTypeKind | null;
730 name: string | null;
731 ofType: IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType_ofType | null;
732}
733export interface IntrospectionFullType_fields_args_type_ofType_ofType_ofType {
734 __typename: "IntrospectionType";
735 kind: IntrospectionTypeKind | null;
736 name: string | null;
737 ofType: IntrospectionFullType_fields_args_type_ofType_ofType_ofType_ofType | null;
738}
739export interface IntrospectionFullType_fields_args_type_ofType_ofType {
740 __typename: "IntrospectionType";
741 kind: IntrospectionTypeKind | null;
742 name: string | null;
743 ofType: IntrospectionFullType_fields_args_type_ofType_ofType_ofType | null;
744}
745export interface IntrospectionFullType_fields_args_type_ofType {
746 __typename: "IntrospectionType";
747 kind: IntrospectionTypeKind | null;
748 name: string | null;
749 ofType: IntrospectionFullType_fields_args_type_ofType_ofType | null;
750}
751export interface IntrospectionFullType_fields_args_type {
752 __typename: "IntrospectionType";
753 kind: IntrospectionTypeKind | null;
754 name: string | null;
755 ofType: IntrospectionFullType_fields_args_type_ofType | null;
756}
757export interface IntrospectionFullType_fields_args {
758 __typename: "IntrospectionInputValue";
759 name: string;
760 description: string | null;
761 type: IntrospectionFullType_fields_args_type;
762 defaultValue: string | null;
763}
764export interface IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
765 __typename: "IntrospectionType";
766 kind: IntrospectionTypeKind | null;
767 name: string | null;
768}
769export interface IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType_ofType {
770 __typename: "IntrospectionType";
771 kind: IntrospectionTypeKind | null;
772 name: string | null;
773 ofType: IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
774}
775export interface IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType {
776 __typename: "IntrospectionType";
777 kind: IntrospectionTypeKind | null;
778 name: string | null;
779 ofType: IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
780}
781export interface IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType {
782 __typename: "IntrospectionType";
783 kind: IntrospectionTypeKind | null;
784 name: string | null;
785 ofType: IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType_ofType | null;
786}
787export interface IntrospectionFullType_fields_type_ofType_ofType_ofType {
788 __typename: "IntrospectionType";
789 kind: IntrospectionTypeKind | null;
790 name: string | null;
791 ofType: IntrospectionFullType_fields_type_ofType_ofType_ofType_ofType | null;
792}
793export interface IntrospectionFullType_fields_type_ofType_ofType {
794 __typename: "IntrospectionType";
795 kind: IntrospectionTypeKind | null;
796 name: string | null;
797 ofType: IntrospectionFullType_fields_type_ofType_ofType_ofType | null;
798}
799export interface IntrospectionFullType_fields_type_ofType {
800 __typename: "IntrospectionType";
801 kind: IntrospectionTypeKind | null;
802 name: string | null;
803 ofType: IntrospectionFullType_fields_type_ofType_ofType | null;
804}
805export interface IntrospectionFullType_fields_type {
806 __typename: "IntrospectionType";
807 kind: IntrospectionTypeKind | null;
808 name: string | null;
809 ofType: IntrospectionFullType_fields_type_ofType | null;
810}
811export interface IntrospectionFullType_fields {
812 __typename: "IntrospectionField";
813 name: string;
814 description: string | null;
815 args: IntrospectionFullType_fields_args[];
816 type: IntrospectionFullType_fields_type;
817 isDeprecated: boolean;
818 deprecationReason: string | null;
819}
820export interface IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
821 __typename: "IntrospectionType";
822 kind: IntrospectionTypeKind | null;
823 name: string | null;
824}
825export interface IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType {
826 __typename: "IntrospectionType";
827 kind: IntrospectionTypeKind | null;
828 name: string | null;
829 ofType: IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
830}
831export interface IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType {
832 __typename: "IntrospectionType";
833 kind: IntrospectionTypeKind | null;
834 name: string | null;
835 ofType: IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
836}
837export interface IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType {
838 __typename: "IntrospectionType";
839 kind: IntrospectionTypeKind | null;
840 name: string | null;
841 ofType: IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType_ofType | null;
842}
843export interface IntrospectionFullType_inputFields_type_ofType_ofType_ofType {
844 __typename: "IntrospectionType";
845 kind: IntrospectionTypeKind | null;
846 name: string | null;
847 ofType: IntrospectionFullType_inputFields_type_ofType_ofType_ofType_ofType | null;
848}
849export interface IntrospectionFullType_inputFields_type_ofType_ofType {
850 __typename: "IntrospectionType";
851 kind: IntrospectionTypeKind | null;
852 name: string | null;
853 ofType: IntrospectionFullType_inputFields_type_ofType_ofType_ofType | null;
854}
855export interface IntrospectionFullType_inputFields_type_ofType {
856 __typename: "IntrospectionType";
857 kind: IntrospectionTypeKind | null;
858 name: string | null;
859 ofType: IntrospectionFullType_inputFields_type_ofType_ofType | null;
860}
861export interface IntrospectionFullType_inputFields_type {
862 __typename: "IntrospectionType";
863 kind: IntrospectionTypeKind | null;
864 name: string | null;
865 ofType: IntrospectionFullType_inputFields_type_ofType | null;
866}
867export interface IntrospectionFullType_inputFields {
868 __typename: "IntrospectionInputValue";
869 name: string;
870 description: string | null;
871 type: IntrospectionFullType_inputFields_type;
872 defaultValue: string | null;
873}
874export interface IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
875 __typename: "IntrospectionType";
876 kind: IntrospectionTypeKind | null;
877 name: string | null;
878}
879export interface IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType_ofType {
880 __typename: "IntrospectionType";
881 kind: IntrospectionTypeKind | null;
882 name: string | null;
883 ofType: IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
884}
885export interface IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType {
886 __typename: "IntrospectionType";
887 kind: IntrospectionTypeKind | null;
888 name: string | null;
889 ofType: IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType_ofType | null;
890}
891export interface IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType {
892 __typename: "IntrospectionType";
893 kind: IntrospectionTypeKind | null;
894 name: string | null;
895 ofType: IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType_ofType | null;
896}
897export interface IntrospectionFullType_interfaces_ofType_ofType_ofType {
898 __typename: "IntrospectionType";
899 kind: IntrospectionTypeKind | null;
900 name: string | null;
901 ofType: IntrospectionFullType_interfaces_ofType_ofType_ofType_ofType | null;
902}
903export interface IntrospectionFullType_interfaces_ofType_ofType {
904 __typename: "IntrospectionType";
905 kind: IntrospectionTypeKind | null;
906 name: string | null;
907 ofType: IntrospectionFullType_interfaces_ofType_ofType_ofType | null;
908}
909export interface IntrospectionFullType_interfaces_ofType {
910 __typename: "IntrospectionType";
911 kind: IntrospectionTypeKind | null;
912 name: string | null;
913 ofType: IntrospectionFullType_interfaces_ofType_ofType | null;
914}
915export interface IntrospectionFullType_interfaces {
916 __typename: "IntrospectionType";
917 kind: IntrospectionTypeKind | null;
918 name: string | null;
919 ofType: IntrospectionFullType_interfaces_ofType | null;
920}
921export interface IntrospectionFullType_enumValues {
922 __typename: "IntrospectionEnumValue";
923 name: string;
924 description: string | null;
925 isDeprecated: boolean;
926 deprecationReason: string | null;
927}
928export interface IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
929 __typename: "IntrospectionType";
930 kind: IntrospectionTypeKind | null;
931 name: string | null;
932}
933export interface IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType {
934 __typename: "IntrospectionType";
935 kind: IntrospectionTypeKind | null;
936 name: string | null;
937 ofType: IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
938}
939export interface IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType {
940 __typename: "IntrospectionType";
941 kind: IntrospectionTypeKind | null;
942 name: string | null;
943 ofType: IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType_ofType | null;
944}
945export interface IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType {
946 __typename: "IntrospectionType";
947 kind: IntrospectionTypeKind | null;
948 name: string | null;
949 ofType: IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType_ofType | null;
950}
951export interface IntrospectionFullType_possibleTypes_ofType_ofType_ofType {
952 __typename: "IntrospectionType";
953 kind: IntrospectionTypeKind | null;
954 name: string | null;
955 ofType: IntrospectionFullType_possibleTypes_ofType_ofType_ofType_ofType | null;
956}
957export interface IntrospectionFullType_possibleTypes_ofType_ofType {
958 __typename: "IntrospectionType";
959 kind: IntrospectionTypeKind | null;
960 name: string | null;
961 ofType: IntrospectionFullType_possibleTypes_ofType_ofType_ofType | null;
962}
963export interface IntrospectionFullType_possibleTypes_ofType {
964 __typename: "IntrospectionType";
965 kind: IntrospectionTypeKind | null;
966 name: string | null;
967 ofType: IntrospectionFullType_possibleTypes_ofType_ofType | null;
968}
969export interface IntrospectionFullType_possibleTypes {
970 __typename: "IntrospectionType";
971 kind: IntrospectionTypeKind | null;
972 name: string | null;
973 ofType: IntrospectionFullType_possibleTypes_ofType | null;
974}
975export interface IntrospectionFullType {
976 __typename: "IntrospectionType";
977 kind: IntrospectionTypeKind | null;
978 name: string | null;
979 description: string | null;
980 fields: IntrospectionFullType_fields[] | null;
981 inputFields: IntrospectionFullType_inputFields[] | null;
982 interfaces: IntrospectionFullType_interfaces[] | null;
983 enumValues: IntrospectionFullType_enumValues[] | null;
984 possibleTypes: IntrospectionFullType_possibleTypes[] | null;
985}
986export interface IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
987 __typename: "IntrospectionType";
988 kind: IntrospectionTypeKind | null;
989 name: string | null;
990}
991export interface IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType_ofType {
992 __typename: "IntrospectionType";
993 kind: IntrospectionTypeKind | null;
994 name: string | null;
995 ofType: IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
996}
997export interface IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType {
998 __typename: "IntrospectionType";
999 kind: IntrospectionTypeKind | null;
1000 name: string | null;
1001 ofType: IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType_ofType | null;
1002}
1003export interface IntrospectionInputValue_type_ofType_ofType_ofType_ofType {
1004 __typename: "IntrospectionType";
1005 kind: IntrospectionTypeKind | null;
1006 name: string | null;
1007 ofType: IntrospectionInputValue_type_ofType_ofType_ofType_ofType_ofType | null;
1008}
1009export interface IntrospectionInputValue_type_ofType_ofType_ofType {
1010 __typename: "IntrospectionType";
1011 kind: IntrospectionTypeKind | null;
1012 name: string | null;
1013 ofType: IntrospectionInputValue_type_ofType_ofType_ofType_ofType | null;
1014}
1015export interface IntrospectionInputValue_type_ofType_ofType {
1016 __typename: "IntrospectionType";
1017 kind: IntrospectionTypeKind | null;
1018 name: string | null;
1019 ofType: IntrospectionInputValue_type_ofType_ofType_ofType | null;
1020}
1021export interface IntrospectionInputValue_type_ofType {
1022 __typename: "IntrospectionType";
1023 kind: IntrospectionTypeKind | null;
1024 name: string | null;
1025 ofType: IntrospectionInputValue_type_ofType_ofType | null;
1026}
1027export interface IntrospectionInputValue_type {
1028 __typename: "IntrospectionType";
1029 kind: IntrospectionTypeKind | null;
1030 name: string | null;
1031 ofType: IntrospectionInputValue_type_ofType | null;
1032}
1033export interface IntrospectionInputValue {
1034 __typename: "IntrospectionInputValue";
1035 name: string;
1036 description: string | null;
1037 type: IntrospectionInputValue_type;
1038 defaultValue: string | null;
1039}
1040export interface IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType_ofType_ofType {
1041 __typename: "IntrospectionType";
1042 kind: IntrospectionTypeKind | null;
1043 name: string | null;
1044}
1045export interface IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType_ofType {
1046 __typename: "IntrospectionType";
1047 kind: IntrospectionTypeKind | null;
1048 name: string | null;
1049 ofType: IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType_ofType_ofType | null;
1050}
1051export interface IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType {
1052 __typename: "IntrospectionType";
1053 kind: IntrospectionTypeKind | null;
1054 name: string | null;
1055 ofType: IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType_ofType | null;
1056}
1057export interface IntrospectionTypeRef_ofType_ofType_ofType_ofType {
1058 __typename: "IntrospectionType";
1059 kind: IntrospectionTypeKind | null;
1060 name: string | null;
1061 ofType: IntrospectionTypeRef_ofType_ofType_ofType_ofType_ofType | null;
1062}
1063export interface IntrospectionTypeRef_ofType_ofType_ofType {
1064 __typename: "IntrospectionType";
1065 kind: IntrospectionTypeKind | null;
1066 name: string | null;
1067 ofType: IntrospectionTypeRef_ofType_ofType_ofType_ofType | null;
1068}
1069export interface IntrospectionTypeRef_ofType_ofType {
1070 __typename: "IntrospectionType";
1071 kind: IntrospectionTypeKind | null;
1072 name: string | null;
1073 ofType: IntrospectionTypeRef_ofType_ofType_ofType | null;
1074}
1075export interface IntrospectionTypeRef_ofType {
1076 __typename: "IntrospectionType";
1077 kind: IntrospectionTypeKind | null;
1078 name: string | null;
1079 ofType: IntrospectionTypeRef_ofType_ofType | null;
1080}
1081export interface IntrospectionTypeRef {
1082 __typename: "IntrospectionType";
1083 kind: IntrospectionTypeKind | null;
1084 name: string | null;
1085 ofType: IntrospectionTypeRef_ofType | null;
1086}
1087export declare enum ChangeSeverity {
1088 FAILURE = "FAILURE",
1089 NOTICE = "NOTICE"
1090}
1091export declare enum IntrospectionDirectiveLocation {
1092 ARGUMENT_DEFINITION = "ARGUMENT_DEFINITION",
1093 ENUM = "ENUM",
1094 ENUM_VALUE = "ENUM_VALUE",
1095 FIELD = "FIELD",
1096 FIELD_DEFINITION = "FIELD_DEFINITION",
1097 FRAGMENT_DEFINITION = "FRAGMENT_DEFINITION",
1098 FRAGMENT_SPREAD = "FRAGMENT_SPREAD",
1099 INLINE_FRAGMENT = "INLINE_FRAGMENT",
1100 INPUT_FIELD_DEFINITION = "INPUT_FIELD_DEFINITION",
1101 INPUT_OBJECT = "INPUT_OBJECT",
1102 INTERFACE = "INTERFACE",
1103 MUTATION = "MUTATION",
1104 OBJECT = "OBJECT",
1105 QUERY = "QUERY",
1106 SCALAR = "SCALAR",
1107 SCHEMA = "SCHEMA",
1108 SUBSCRIPTION = "SUBSCRIPTION",
1109 UNION = "UNION",
1110 VARIABLE_DEFINITION = "VARIABLE_DEFINITION"
1111}
1112export declare enum IntrospectionTypeKind {
1113 ENUM = "ENUM",
1114 INPUT_OBJECT = "INPUT_OBJECT",
1115 INTERFACE = "INTERFACE",
1116 LIST = "LIST",
1117 NON_NULL = "NON_NULL",
1118 OBJECT = "OBJECT",
1119 SCALAR = "SCALAR",
1120 UNION = "UNION"
1121}
1122export declare enum ValidationErrorCode {
1123 DEPRECATED_FIELD = "DEPRECATED_FIELD",
1124 INVALID_OPERATION = "INVALID_OPERATION",
1125 NON_PARSEABLE_DOCUMENT = "NON_PARSEABLE_DOCUMENT"
1126}
1127export declare enum ValidationErrorType {
1128 FAILURE = "FAILURE",
1129 INVALID = "INVALID",
1130 WARNING = "WARNING"
1131}
1132export interface ClientInfoFilter {
1133 referenceID?: string | null;
1134 name?: string | null;
1135 version?: string | null;
1136}
1137export interface GitContextInput {
1138 remoteUrl?: string | null;
1139 commit?: string | null;
1140 committer?: string | null;
1141 message?: string | null;
1142 branch?: string | null;
1143}
1144export interface HistoricQueryParameters {
1145 from?: any | null;
1146 to?: any | null;
1147 queryCountThreshold?: number | null;
1148 queryCountThresholdPercentage?: number | null;
1149 ignoredOperations?: string[] | null;
1150 excludedClients?: ClientInfoFilter[] | null;
1151 includedVariants?: string[] | null;
1152}
1153export interface IntrospectionDirectiveInput {
1154 name: string;
1155 description?: string | null;
1156 locations: IntrospectionDirectiveLocation[];
1157 args: IntrospectionInputValueInput[];
1158 isRepeatable?: boolean | null;
1159}
1160export interface IntrospectionEnumValueInput {
1161 name: string;
1162 description?: string | null;
1163 isDeprecated: boolean;
1164 deprecationReason?: string | null;
1165}
1166export interface IntrospectionFieldInput {
1167 name: string;
1168 description?: string | null;
1169 args: IntrospectionInputValueInput[];
1170 type: IntrospectionTypeInput;
1171 isDeprecated: boolean;
1172 deprecationReason?: string | null;
1173}
1174export interface IntrospectionInputValueInput {
1175 name: string;
1176 description?: string | null;
1177 type: IntrospectionTypeInput;
1178 defaultValue?: string | null;
1179 isDeprecated?: boolean | null;
1180 deprecationReason?: string | null;
1181}
1182export interface IntrospectionSchemaInput {
1183 types?: IntrospectionTypeInput[] | null;
1184 queryType: IntrospectionTypeRefInput;
1185 mutationType?: IntrospectionTypeRefInput | null;
1186 subscriptionType?: IntrospectionTypeRefInput | null;
1187 directives: IntrospectionDirectiveInput[];
1188 description?: string | null;
1189}
1190export interface IntrospectionTypeInput {
1191 kind: IntrospectionTypeKind;
1192 name?: string | null;
1193 description?: string | null;
1194 specifiedByUrl?: string | null;
1195 fields?: IntrospectionFieldInput[] | null;
1196 interfaces?: IntrospectionTypeInput[] | null;
1197 possibleTypes?: IntrospectionTypeInput[] | null;
1198 enumValues?: IntrospectionEnumValueInput[] | null;
1199 inputFields?: IntrospectionInputValueInput[] | null;
1200 ofType?: IntrospectionTypeInput | null;
1201}
1202export interface IntrospectionTypeRefInput {
1203 name: string;
1204 kind?: string | null;
1205}
1206export interface OperationDocumentInput {
1207 body: string;
1208 name?: string | null;
1209}
1210export interface PartialSchemaInput {
1211 sdl?: string | null;
1212 hash?: string | null;
1213}
1214export interface RegisteredClientIdentityInput {
1215 identifier: string;
1216 name: string;
1217 version?: string | null;
1218}
1219export interface RegisteredOperationInput {
1220 signature: string;
1221 document?: string | null;
1222 metadata?: RegisteredOperationMetadataInput | null;
1223}
1224export interface RegisteredOperationMetadataInput {
1225 engineSignature?: string | null;
1226}
1227//# sourceMappingURL=graphqlTypes.d.ts.map
\No newline at end of file