File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export interface IncrementalDeferResult<
100100> {
101101 errors ?: ReadonlyArray < GraphQLError > ;
102102 data : TData ;
103- path ? : ReadonlyArray < string | number > ;
103+ path : ReadonlyArray < string | number > ;
104104 extensions ?: TExtensions ;
105105}
106106
@@ -110,7 +110,7 @@ export interface FormattedIncrementalDeferResult<
110110> {
111111 errors ?: ReadonlyArray < GraphQLFormattedError > ;
112112 data : TData ;
113- path ? : ReadonlyArray < string | number > ;
113+ path : ReadonlyArray < string | number > ;
114114 extensions ?: TExtensions ;
115115}
116116
@@ -120,7 +120,7 @@ export interface IncrementalStreamResult<
120120> {
121121 errors ?: ReadonlyArray < GraphQLError > ;
122122 items : TData ;
123- path ? : ReadonlyArray < string | number > ;
123+ path : ReadonlyArray < string | number > ;
124124 extensions ?: TExtensions ;
125125}
126126
@@ -130,7 +130,7 @@ export interface FormattedIncrementalStreamResult<
130130> {
131131 errors ?: ReadonlyArray < GraphQLFormattedError > ;
132132 items : TData ;
133- path ? : ReadonlyArray < string | number > ;
133+ path : ReadonlyArray < string | number > ;
134134 extensions ?: TExtensions ;
135135}
136136
You can’t perform that action at this time.
0 commit comments