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