Skip to content

Commit

Permalink
Update generated types
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-scheer committed Jun 5, 2022
1 parent bd5bd58 commit 2bfa2ea
Showing 1 changed file with 46 additions and 31 deletions.
77 changes: 46 additions & 31 deletions packages/apollo-language-server/src/graphqlTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,13 @@ export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTri

export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors_locations {
__typename: "SourceLocation";
/**
* Column number.
*/
column: number;
/**
* Line number.
*/
line: number;
}

Expand Down Expand Up @@ -1736,12 +1742,18 @@ export enum ValidationErrorType {
WARNING = "WARNING",
}

/**
* Filter options to exclude by client reference ID, client name, and client version.
*/
export interface ClientInfoFilter {
name?: string | null;
referenceID?: string | null;
version?: string | null;
}

/**
* This is stored with a schema when it is uploaded
*/
export interface GitContextInput {
branch?: string | null;
commit?: string | null;
Expand All @@ -1751,99 +1763,102 @@ export interface GitContextInput {
}

export interface HistoricQueryParameters {
excludedClients?: ClientInfoFilter[] | null;
excludedOperationNames?: OperationNameFilterInput[] | null;
from?: any | null;
ignoredOperations?: string[] | null;
includedVariants?: string[] | null;
to?: any | null;
queryCountThreshold?: number | null;
queryCountThresholdPercentage?: number | null;
to?: any | null;
ignoredOperations?: string[] | null;
excludedClients?: ClientInfoFilter[] | null;
excludedOperationNames?: OperationNameFilterInput[] | null;
includedVariants?: string[] | null;
}

export interface IntrospectionDirectiveInput {
args: IntrospectionInputValueInput[];
name: string;
description?: string | null;
isRepeatable?: boolean | null;
locations: IntrospectionDirectiveLocation[];
name: string;
args: IntrospectionInputValueInput[];
isRepeatable?: boolean | null;
}

/**
* __EnumValue introspection type
*/
export interface IntrospectionEnumValueInput {
deprecationReason?: string | null;
name: string;
description?: string | null;
isDeprecated: boolean;
name: string;
deprecationReason?: string | null;
}

/**
* __Field introspection type
*/
export interface IntrospectionFieldInput {
args: IntrospectionInputValueInput[];
deprecationReason?: string | null;
description?: string | null;
isDeprecated: boolean;
name: string;
description?: string | null;
args: IntrospectionInputValueInput[];
type: IntrospectionTypeInput;
isDeprecated: boolean;
deprecationReason?: string | null;
}

/**
* __Value introspection type
*/
export interface IntrospectionInputValueInput {
defaultValue?: string | null;
deprecationReason?: string | null;
description?: string | null;
isDeprecated?: boolean | null;
name: string;
description?: string | null;
type: IntrospectionTypeInput;
defaultValue?: string | null;
isDeprecated?: boolean | null;
deprecationReason?: string | null;
}

/**
* __Schema introspection type
*/
export interface IntrospectionSchemaInput {
description?: string | null;
directives: IntrospectionDirectiveInput[];
mutationType?: IntrospectionTypeRefInput | null;
types?: IntrospectionTypeInput[] | null;
queryType: IntrospectionTypeRefInput;
mutationType?: IntrospectionTypeRefInput | null;
subscriptionType?: IntrospectionTypeRefInput | null;
types?: IntrospectionTypeInput[] | null;
directives: IntrospectionDirectiveInput[];
description?: string | null;
}

/**
* __Type introspection type
*/
export interface IntrospectionTypeInput {
kind: IntrospectionTypeKind;
name?: string | null;
description?: string | null;
enumValues?: IntrospectionEnumValueInput[] | null;
specifiedByUrl?: string | null;
fields?: IntrospectionFieldInput[] | null;
inputFields?: IntrospectionInputValueInput[] | null;
interfaces?: IntrospectionTypeInput[] | null;
kind: IntrospectionTypeKind;
name?: string | null;
ofType?: IntrospectionTypeInput | null;
possibleTypes?: IntrospectionTypeInput[] | null;
specifiedByUrl?: string | null;
enumValues?: IntrospectionEnumValueInput[] | null;
inputFields?: IntrospectionInputValueInput[] | null;
ofType?: IntrospectionTypeInput | null;
}

/**
* Shallow __Type introspection type
*/
export interface IntrospectionTypeRefInput {
kind?: string | null;
name: string;
kind?: string | null;
}

export interface OperationDocumentInput {
body: string;
name?: string | null;
}

/**
* Options to filter by operation name.
*/
export interface OperationNameFilterInput {
name: string;
version?: string | null;
Expand All @@ -1861,8 +1876,8 @@ export interface OperationNameFilterInput {
* the hash does not need to be and will be computed server-side.
*/
export interface PartialSchemaInput {
hash?: string | null;
sdl?: string | null;
hash?: string | null;
}

export interface RegisteredClientIdentityInput {
Expand All @@ -1872,9 +1887,9 @@ export interface RegisteredClientIdentityInput {
}

export interface RegisteredOperationInput {
signature: string;
document?: string | null;
metadata?: RegisteredOperationMetadataInput | null;
signature: string;
}

export interface RegisteredOperationMetadataInput {
Expand Down

0 comments on commit 2bfa2ea

Please sign in to comment.