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<
100
100
> {
101
101
errors ?: ReadonlyArray < GraphQLError > ;
102
102
data : TData ;
103
- path ? : ReadonlyArray < string | number > ;
103
+ path : ReadonlyArray < string | number > ;
104
104
extensions ?: TExtensions ;
105
105
}
106
106
@@ -110,7 +110,7 @@ export interface FormattedIncrementalDeferResult<
110
110
> {
111
111
errors ?: ReadonlyArray < GraphQLFormattedError > ;
112
112
data : TData ;
113
- path ? : ReadonlyArray < string | number > ;
113
+ path : ReadonlyArray < string | number > ;
114
114
extensions ?: TExtensions ;
115
115
}
116
116
@@ -120,7 +120,7 @@ export interface IncrementalStreamResult<
120
120
> {
121
121
errors ?: ReadonlyArray < GraphQLError > ;
122
122
items : TData ;
123
- path ? : ReadonlyArray < string | number > ;
123
+ path : ReadonlyArray < string | number > ;
124
124
extensions ?: TExtensions ;
125
125
}
126
126
@@ -130,7 +130,7 @@ export interface FormattedIncrementalStreamResult<
130
130
> {
131
131
errors ?: ReadonlyArray < GraphQLFormattedError > ;
132
132
items : TData ;
133
- path ? : ReadonlyArray < string | number > ;
133
+ path : ReadonlyArray < string | number > ;
134
134
extensions ?: TExtensions ;
135
135
}
136
136
You can’t perform that action at this time.
0 commit comments