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 @@ -351,7 +351,7 @@ export function buildExecutionContext(
351
351
variableValues : coercedVariableValues . coerced ,
352
352
fieldResolver : fieldResolver || defaultFieldResolver ,
353
353
typeResolver : typeResolver || defaultTypeResolver ,
354
- // TODO: Pass these properties in from buildExecution arugments
354
+ // TODO: Pass these properties in from buildExecution arguments
355
355
dispatcher : new Dispatcher ( ) ,
356
356
errors : [ ] ,
357
357
} ;
@@ -396,7 +396,7 @@ function executeOperation(
396
396
397
397
exeContext . dispatcher . add (
398
398
label ,
399
- // TODO: `path` is initially "undefined", which essentialy means "root",
399
+ // TODO: `path` is initially "undefined", which essentially means "root",
400
400
// investigate if "undefined" is a valid path value.
401
401
path ,
402
402
( ) =>
Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ export type GraphQLSchemaValidationOptions = {|
389
389
* EXPERIMENTAL:
390
390
*
391
391
* If enabled, processed fields from fragment spreads with @defer directive
392
- * are not returned from the iniital query and the respective data is returned
392
+ * are not returned from the initial query and the respective data is returned
393
393
* in patches after the initial result from the synchronous query.
394
394
*
395
395
* Default: false
@@ -401,7 +401,7 @@ export type GraphQLSchemaValidationOptions = {|
401
401
* EXPERIMENTAL:
402
402
*
403
403
* If enabled, items from a plural fields with @stream directive
404
- * are not returned from the iniital query and each item is returned
404
+ * are not returned from the initial query and each item is returned
405
405
* in a patch after the initial result from the synchronous query.
406
406
*
407
407
* Default: false
You can’t perform that action at this time.
0 commit comments