File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -129,12 +129,12 @@ describe('Star Wars Query Stream Tests', () => {
129
129
friends : [
130
130
{
131
131
id : '1000' ,
132
- appearsIn : [ 'NEWHOPE ' , 'EMPIRE' , 'JEDI' ] ,
132
+ appearsIn : [ 'NEW_HOPE ' , 'EMPIRE' , 'JEDI' ] ,
133
133
name : 'Luke Skywalker' ,
134
134
} ,
135
135
{
136
136
id : '1002' ,
137
- appearsIn : [ 'NEWHOPE ' , 'EMPIRE' , 'JEDI' ] ,
137
+ appearsIn : [ 'NEW_HOPE ' , 'EMPIRE' , 'JEDI' ] ,
138
138
} ,
139
139
{
140
140
id : '1003' ,
@@ -171,7 +171,7 @@ describe('Star Wars Query Stream Tests', () => {
171
171
172
172
expect ( patches [ 2 ] ) . to . deep . equal ( {
173
173
data : {
174
- appearsIn : [ 'NEWHOPE ' , 'EMPIRE' , 'JEDI' ] ,
174
+ appearsIn : [ 'NEW_HOPE ' , 'EMPIRE' , 'JEDI' ] ,
175
175
} ,
176
176
path : [ 'hero' , 'friends' , 2 ] ,
177
177
label : 'appearsInLabel' ,
Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ export function buildExecutionContext(
350
350
variableValues : coercedVariableValues . coerced ,
351
351
fieldResolver : fieldResolver || defaultFieldResolver ,
352
352
typeResolver : typeResolver || defaultTypeResolver ,
353
- // TODO: Pass these properties in from buildExecution arugments
353
+ // TODO: Pass these properties in from buildExecution arguments
354
354
dispatcher : new Dispatcher ( ) ,
355
355
errors : [ ] ,
356
356
} ;
@@ -395,7 +395,7 @@ function executeOperation(
395
395
396
396
exeContext . dispatcher . add (
397
397
label ,
398
- // TODO: `path` is initially "undefined", which essentialy means "root",
398
+ // TODO: `path` is initially "undefined", which essentially means "root",
399
399
// investigate if "undefined" is a valid path value.
400
400
path ,
401
401
( ) =>
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ export type GraphQLSchemaValidationOptions = {|
331
331
* EXPERIMENTAL:
332
332
*
333
333
* If enabled, processed fields from fragment spreads with @defer directive
334
- * are not returned from the iniital query and the respective data is returned
334
+ * are not returned from the initial query and the respective data is returned
335
335
* in patches after the initial result from the synchronous query.
336
336
*
337
337
* Default: false
@@ -343,7 +343,7 @@ export type GraphQLSchemaValidationOptions = {|
343
343
* EXPERIMENTAL:
344
344
*
345
345
* If enabled, items from a plural fields with @stream directive
346
- * are not returned from the iniital query and each item is returned
346
+ * are not returned from the initial query and each item is returned
347
347
* in a patch after the initial result from the synchronous query.
348
348
*
349
349
* Default: false
You can’t perform that action at this time.
0 commit comments