Skip to content

Commit dddf7a3

Browse files
committed
Update generated types
1 parent 4f5aa95 commit dddf7a3

File tree

1 file changed

+46
-31
lines changed

1 file changed

+46
-31
lines changed

packages/apollo-language-server/src/graphqlTypes.ts

+46-31
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,13 @@ export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTri
448448

449449
export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors_locations {
450450
__typename: "SourceLocation";
451+
/**
452+
* Column number.
453+
*/
451454
column: number;
455+
/**
456+
* Line number.
457+
*/
452458
line: number;
453459
}
454460

@@ -1736,12 +1742,18 @@ export enum ValidationErrorType {
17361742
WARNING = "WARNING",
17371743
}
17381744

1745+
/**
1746+
* Filter options to exclude by client reference ID, client name, and client version.
1747+
*/
17391748
export interface ClientInfoFilter {
17401749
name?: string | null;
17411750
referenceID?: string | null;
17421751
version?: string | null;
17431752
}
17441753

1754+
/**
1755+
* This is stored with a schema when it is uploaded
1756+
*/
17451757
export interface GitContextInput {
17461758
branch?: string | null;
17471759
commit?: string | null;
@@ -1751,99 +1763,102 @@ export interface GitContextInput {
17511763
}
17521764

17531765
export interface HistoricQueryParameters {
1754-
excludedClients?: ClientInfoFilter[] | null;
1755-
excludedOperationNames?: OperationNameFilterInput[] | null;
17561766
from?: any | null;
1757-
ignoredOperations?: string[] | null;
1758-
includedVariants?: string[] | null;
1767+
to?: any | null;
17591768
queryCountThreshold?: number | null;
17601769
queryCountThresholdPercentage?: number | null;
1761-
to?: any | null;
1770+
ignoredOperations?: string[] | null;
1771+
excludedClients?: ClientInfoFilter[] | null;
1772+
excludedOperationNames?: OperationNameFilterInput[] | null;
1773+
includedVariants?: string[] | null;
17621774
}
17631775

17641776
export interface IntrospectionDirectiveInput {
1765-
args: IntrospectionInputValueInput[];
1777+
name: string;
17661778
description?: string | null;
1767-
isRepeatable?: boolean | null;
17681779
locations: IntrospectionDirectiveLocation[];
1769-
name: string;
1780+
args: IntrospectionInputValueInput[];
1781+
isRepeatable?: boolean | null;
17701782
}
17711783

17721784
/**
17731785
* __EnumValue introspection type
17741786
*/
17751787
export interface IntrospectionEnumValueInput {
1776-
deprecationReason?: string | null;
1788+
name: string;
17771789
description?: string | null;
17781790
isDeprecated: boolean;
1779-
name: string;
1791+
deprecationReason?: string | null;
17801792
}
17811793

17821794
/**
17831795
* __Field introspection type
17841796
*/
17851797
export interface IntrospectionFieldInput {
1786-
args: IntrospectionInputValueInput[];
1787-
deprecationReason?: string | null;
1788-
description?: string | null;
1789-
isDeprecated: boolean;
17901798
name: string;
1799+
description?: string | null;
1800+
args: IntrospectionInputValueInput[];
17911801
type: IntrospectionTypeInput;
1802+
isDeprecated: boolean;
1803+
deprecationReason?: string | null;
17921804
}
17931805

17941806
/**
17951807
* __Value introspection type
17961808
*/
17971809
export interface IntrospectionInputValueInput {
1798-
defaultValue?: string | null;
1799-
deprecationReason?: string | null;
1800-
description?: string | null;
1801-
isDeprecated?: boolean | null;
18021810
name: string;
1811+
description?: string | null;
18031812
type: IntrospectionTypeInput;
1813+
defaultValue?: string | null;
1814+
isDeprecated?: boolean | null;
1815+
deprecationReason?: string | null;
18041816
}
18051817

18061818
/**
18071819
* __Schema introspection type
18081820
*/
18091821
export interface IntrospectionSchemaInput {
1810-
description?: string | null;
1811-
directives: IntrospectionDirectiveInput[];
1812-
mutationType?: IntrospectionTypeRefInput | null;
1822+
types?: IntrospectionTypeInput[] | null;
18131823
queryType: IntrospectionTypeRefInput;
1824+
mutationType?: IntrospectionTypeRefInput | null;
18141825
subscriptionType?: IntrospectionTypeRefInput | null;
1815-
types?: IntrospectionTypeInput[] | null;
1826+
directives: IntrospectionDirectiveInput[];
1827+
description?: string | null;
18161828
}
18171829

18181830
/**
18191831
* __Type introspection type
18201832
*/
18211833
export interface IntrospectionTypeInput {
1834+
kind: IntrospectionTypeKind;
1835+
name?: string | null;
18221836
description?: string | null;
1823-
enumValues?: IntrospectionEnumValueInput[] | null;
1837+
specifiedByUrl?: string | null;
18241838
fields?: IntrospectionFieldInput[] | null;
1825-
inputFields?: IntrospectionInputValueInput[] | null;
18261839
interfaces?: IntrospectionTypeInput[] | null;
1827-
kind: IntrospectionTypeKind;
1828-
name?: string | null;
1829-
ofType?: IntrospectionTypeInput | null;
18301840
possibleTypes?: IntrospectionTypeInput[] | null;
1831-
specifiedByUrl?: string | null;
1841+
enumValues?: IntrospectionEnumValueInput[] | null;
1842+
inputFields?: IntrospectionInputValueInput[] | null;
1843+
ofType?: IntrospectionTypeInput | null;
18321844
}
18331845

18341846
/**
18351847
* Shallow __Type introspection type
18361848
*/
18371849
export interface IntrospectionTypeRefInput {
1838-
kind?: string | null;
18391850
name: string;
1851+
kind?: string | null;
18401852
}
18411853

18421854
export interface OperationDocumentInput {
18431855
body: string;
18441856
name?: string | null;
18451857
}
18461858

1859+
/**
1860+
* Options to filter by operation name.
1861+
*/
18471862
export interface OperationNameFilterInput {
18481863
name: string;
18491864
version?: string | null;
@@ -1861,8 +1876,8 @@ export interface OperationNameFilterInput {
18611876
* the hash does not need to be and will be computed server-side.
18621877
*/
18631878
export interface PartialSchemaInput {
1864-
hash?: string | null;
18651879
sdl?: string | null;
1880+
hash?: string | null;
18661881
}
18671882

18681883
export interface RegisteredClientIdentityInput {
@@ -1872,9 +1887,9 @@ export interface RegisteredClientIdentityInput {
18721887
}
18731888

18741889
export interface RegisteredOperationInput {
1890+
signature: string;
18751891
document?: string | null;
18761892
metadata?: RegisteredOperationMetadataInput | null;
1877-
signature: string;
18781893
}
18791894

18801895
export interface RegisteredOperationMetadataInput {

0 commit comments

Comments
 (0)