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
- id ? : string ;
103
+ id : string ;
104
104
subPath ?: ReadonlyArray < string | number > ;
105
105
extensions ?: TExtensions ;
106
106
}
@@ -111,7 +111,7 @@ export interface FormattedIncrementalDeferResult<
111
111
> {
112
112
errors ?: ReadonlyArray < GraphQLFormattedError > ;
113
113
data : TData ;
114
- id ? : string ;
114
+ id : string ;
115
115
subPath ?: ReadonlyArray < string | number > ;
116
116
extensions ?: TExtensions ;
117
117
}
@@ -122,7 +122,7 @@ export interface IncrementalStreamResult<
122
122
> {
123
123
errors ?: ReadonlyArray < GraphQLError > ;
124
124
items : TData ;
125
- id ? : string ;
125
+ id : string ;
126
126
subPath ?: ReadonlyArray < string | number > ;
127
127
extensions ?: TExtensions ;
128
128
}
@@ -133,7 +133,7 @@ export interface FormattedIncrementalStreamResult<
133
133
> {
134
134
errors ?: ReadonlyArray < GraphQLFormattedError > ;
135
135
items : TData ;
136
- id ? : string ;
136
+ id : string ;
137
137
subPath ?: ReadonlyArray < string | number > ;
138
138
extensions ?: TExtensions ;
139
139
}
You can’t perform that action at this time.
0 commit comments