@@ -448,7 +448,13 @@ export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTri
448
448
449
449
export interface RemoveServiceAndCompose_service_removeImplementingServiceAndTriggerComposition_errors_locations {
450
450
__typename : "SourceLocation" ;
451
+ /**
452
+ * Column number.
453
+ */
451
454
column : number ;
455
+ /**
456
+ * Line number.
457
+ */
452
458
line : number ;
453
459
}
454
460
@@ -1736,12 +1742,18 @@ export enum ValidationErrorType {
1736
1742
WARNING = "WARNING" ,
1737
1743
}
1738
1744
1745
+ /**
1746
+ * Filter options to exclude by client reference ID, client name, and client version.
1747
+ */
1739
1748
export interface ClientInfoFilter {
1740
1749
name ?: string | null ;
1741
1750
referenceID ?: string | null ;
1742
1751
version ?: string | null ;
1743
1752
}
1744
1753
1754
+ /**
1755
+ * This is stored with a schema when it is uploaded
1756
+ */
1745
1757
export interface GitContextInput {
1746
1758
branch ?: string | null ;
1747
1759
commit ?: string | null ;
@@ -1751,99 +1763,102 @@ export interface GitContextInput {
1751
1763
}
1752
1764
1753
1765
export interface HistoricQueryParameters {
1754
- excludedClients ?: ClientInfoFilter [ ] | null ;
1755
- excludedOperationNames ?: OperationNameFilterInput [ ] | null ;
1756
1766
from ?: any | null ;
1757
- ignoredOperations ?: string [ ] | null ;
1758
- includedVariants ?: string [ ] | null ;
1767
+ to ?: any | null ;
1759
1768
queryCountThreshold ?: number | null ;
1760
1769
queryCountThresholdPercentage ?: number | null ;
1761
- to ?: any | null ;
1770
+ ignoredOperations ?: string [ ] | null ;
1771
+ excludedClients ?: ClientInfoFilter [ ] | null ;
1772
+ excludedOperationNames ?: OperationNameFilterInput [ ] | null ;
1773
+ includedVariants ?: string [ ] | null ;
1762
1774
}
1763
1775
1764
1776
export interface IntrospectionDirectiveInput {
1765
- args : IntrospectionInputValueInput [ ] ;
1777
+ name : string ;
1766
1778
description ?: string | null ;
1767
- isRepeatable ?: boolean | null ;
1768
1779
locations : IntrospectionDirectiveLocation [ ] ;
1769
- name : string ;
1780
+ args : IntrospectionInputValueInput [ ] ;
1781
+ isRepeatable ?: boolean | null ;
1770
1782
}
1771
1783
1772
1784
/**
1773
1785
* __EnumValue introspection type
1774
1786
*/
1775
1787
export interface IntrospectionEnumValueInput {
1776
- deprecationReason ? : string | null ;
1788
+ name : string ;
1777
1789
description ?: string | null ;
1778
1790
isDeprecated : boolean ;
1779
- name : string ;
1791
+ deprecationReason ? : string | null ;
1780
1792
}
1781
1793
1782
1794
/**
1783
1795
* __Field introspection type
1784
1796
*/
1785
1797
export interface IntrospectionFieldInput {
1786
- args : IntrospectionInputValueInput [ ] ;
1787
- deprecationReason ?: string | null ;
1788
- description ?: string | null ;
1789
- isDeprecated : boolean ;
1790
1798
name : string ;
1799
+ description ?: string | null ;
1800
+ args : IntrospectionInputValueInput [ ] ;
1791
1801
type : IntrospectionTypeInput ;
1802
+ isDeprecated : boolean ;
1803
+ deprecationReason ?: string | null ;
1792
1804
}
1793
1805
1794
1806
/**
1795
1807
* __Value introspection type
1796
1808
*/
1797
1809
export interface IntrospectionInputValueInput {
1798
- defaultValue ?: string | null ;
1799
- deprecationReason ?: string | null ;
1800
- description ?: string | null ;
1801
- isDeprecated ?: boolean | null ;
1802
1810
name : string ;
1811
+ description ?: string | null ;
1803
1812
type : IntrospectionTypeInput ;
1813
+ defaultValue ?: string | null ;
1814
+ isDeprecated ?: boolean | null ;
1815
+ deprecationReason ?: string | null ;
1804
1816
}
1805
1817
1806
1818
/**
1807
1819
* __Schema introspection type
1808
1820
*/
1809
1821
export interface IntrospectionSchemaInput {
1810
- description ?: string | null ;
1811
- directives : IntrospectionDirectiveInput [ ] ;
1812
- mutationType ?: IntrospectionTypeRefInput | null ;
1822
+ types ?: IntrospectionTypeInput [ ] | null ;
1813
1823
queryType : IntrospectionTypeRefInput ;
1824
+ mutationType ?: IntrospectionTypeRefInput | null ;
1814
1825
subscriptionType ?: IntrospectionTypeRefInput | null ;
1815
- types ?: IntrospectionTypeInput [ ] | null ;
1826
+ directives : IntrospectionDirectiveInput [ ] ;
1827
+ description ?: string | null ;
1816
1828
}
1817
1829
1818
1830
/**
1819
1831
* __Type introspection type
1820
1832
*/
1821
1833
export interface IntrospectionTypeInput {
1834
+ kind : IntrospectionTypeKind ;
1835
+ name ?: string | null ;
1822
1836
description ?: string | null ;
1823
- enumValues ?: IntrospectionEnumValueInput [ ] | null ;
1837
+ specifiedByUrl ?: string | null ;
1824
1838
fields ?: IntrospectionFieldInput [ ] | null ;
1825
- inputFields ?: IntrospectionInputValueInput [ ] | null ;
1826
1839
interfaces ?: IntrospectionTypeInput [ ] | null ;
1827
- kind : IntrospectionTypeKind ;
1828
- name ?: string | null ;
1829
- ofType ?: IntrospectionTypeInput | null ;
1830
1840
possibleTypes ?: IntrospectionTypeInput [ ] | null ;
1831
- specifiedByUrl ?: string | null ;
1841
+ enumValues ?: IntrospectionEnumValueInput [ ] | null ;
1842
+ inputFields ?: IntrospectionInputValueInput [ ] | null ;
1843
+ ofType ?: IntrospectionTypeInput | null ;
1832
1844
}
1833
1845
1834
1846
/**
1835
1847
* Shallow __Type introspection type
1836
1848
*/
1837
1849
export interface IntrospectionTypeRefInput {
1838
- kind ?: string | null ;
1839
1850
name : string ;
1851
+ kind ?: string | null ;
1840
1852
}
1841
1853
1842
1854
export interface OperationDocumentInput {
1843
1855
body : string ;
1844
1856
name ?: string | null ;
1845
1857
}
1846
1858
1859
+ /**
1860
+ * Options to filter by operation name.
1861
+ */
1847
1862
export interface OperationNameFilterInput {
1848
1863
name : string ;
1849
1864
version ?: string | null ;
@@ -1861,8 +1876,8 @@ export interface OperationNameFilterInput {
1861
1876
* the hash does not need to be and will be computed server-side.
1862
1877
*/
1863
1878
export interface PartialSchemaInput {
1864
- hash ?: string | null ;
1865
1879
sdl ?: string | null ;
1880
+ hash ?: string | null ;
1866
1881
}
1867
1882
1868
1883
export interface RegisteredClientIdentityInput {
@@ -1872,9 +1887,9 @@ export interface RegisteredClientIdentityInput {
1872
1887
}
1873
1888
1874
1889
export interface RegisteredOperationInput {
1890
+ signature : string ;
1875
1891
document ?: string | null ;
1876
1892
metadata ?: RegisteredOperationMetadataInput | null ;
1877
- signature : string ;
1878
1893
}
1879
1894
1880
1895
export interface RegisteredOperationMetadataInput {
0 commit comments