|
| 1 | +/* eslint-disable @typescript-eslint/consistent-type-definitions, @typescript-eslint/no-redundant-type-constituents */ |
| 2 | +import * as Types from './types.js' |
| 3 | + |
| 4 | +import {TypedDocumentNode as DocumentNode} from '@graphql-typed-document-node/core' |
| 5 | + |
| 6 | +export type GetBulkOperationByIdQueryVariables = Types.Exact<{ |
| 7 | + id: Types.Scalars['ID']['input'] |
| 8 | +}> |
| 9 | + |
| 10 | +export type GetBulkOperationByIdQuery = { |
| 11 | + bulkOperation?: { |
| 12 | + completedAt?: unknown | null |
| 13 | + createdAt: unknown |
| 14 | + errorCode?: Types.BulkOperationErrorCode | null |
| 15 | + id: string |
| 16 | + objectCount: unknown |
| 17 | + status: Types.BulkOperationStatus |
| 18 | + url?: string | null |
| 19 | + } | null |
| 20 | +} |
| 21 | + |
| 22 | +export const GetBulkOperationById = { |
| 23 | + kind: 'Document', |
| 24 | + definitions: [ |
| 25 | + { |
| 26 | + kind: 'OperationDefinition', |
| 27 | + operation: 'query', |
| 28 | + name: {kind: 'Name', value: 'GetBulkOperationById'}, |
| 29 | + variableDefinitions: [ |
| 30 | + { |
| 31 | + kind: 'VariableDefinition', |
| 32 | + variable: {kind: 'Variable', name: {kind: 'Name', value: 'id'}}, |
| 33 | + type: {kind: 'NonNullType', type: {kind: 'NamedType', name: {kind: 'Name', value: 'ID'}}}, |
| 34 | + }, |
| 35 | + ], |
| 36 | + selectionSet: { |
| 37 | + kind: 'SelectionSet', |
| 38 | + selections: [ |
| 39 | + { |
| 40 | + kind: 'Field', |
| 41 | + name: {kind: 'Name', value: 'bulkOperation'}, |
| 42 | + arguments: [ |
| 43 | + { |
| 44 | + kind: 'Argument', |
| 45 | + name: {kind: 'Name', value: 'id'}, |
| 46 | + value: {kind: 'Variable', name: {kind: 'Name', value: 'id'}}, |
| 47 | + }, |
| 48 | + ], |
| 49 | + selectionSet: { |
| 50 | + kind: 'SelectionSet', |
| 51 | + selections: [ |
| 52 | + {kind: 'Field', name: {kind: 'Name', value: 'completedAt'}}, |
| 53 | + {kind: 'Field', name: {kind: 'Name', value: 'createdAt'}}, |
| 54 | + {kind: 'Field', name: {kind: 'Name', value: 'errorCode'}}, |
| 55 | + {kind: 'Field', name: {kind: 'Name', value: 'id'}}, |
| 56 | + {kind: 'Field', name: {kind: 'Name', value: 'objectCount'}}, |
| 57 | + {kind: 'Field', name: {kind: 'Name', value: 'status'}}, |
| 58 | + {kind: 'Field', name: {kind: 'Name', value: 'url'}}, |
| 59 | + {kind: 'Field', name: {kind: 'Name', value: '__typename'}}, |
| 60 | + ], |
| 61 | + }, |
| 62 | + }, |
| 63 | + ], |
| 64 | + }, |
| 65 | + }, |
| 66 | + ], |
| 67 | +} as unknown as DocumentNode<GetBulkOperationByIdQuery, GetBulkOperationByIdQueryVariables> |
0 commit comments