File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ describe('Star Wars Query Deferred Tests', () => {
128
128
label : 'DeferNested' ,
129
129
path : [ 'hero' ] ,
130
130
data : {
131
- appearsIn : [ 'NEWHOPE ' , 'EMPIRE' , 'JEDI' ] ,
131
+ appearsIn : [ 'NEW_HOPE ' , 'EMPIRE' , 'JEDI' ] ,
132
132
primaryFunction : 'Astromech' ,
133
133
} ,
134
134
} ) ;
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 @@ -316,7 +316,7 @@ export type GraphQLSchemaValidationOptions = {|
316
316
* EXPERIMENTAL:
317
317
*
318
318
* If enabled, processed fields from fragment spreads with @defer directive
319
- * are not returned from the iniital query and the respective data is returned
319
+ * are not returned from the initial query and the respective data is returned
320
320
* in patches after the initial result from the synchronous query.
321
321
*
322
322
* Default: false
@@ -328,7 +328,7 @@ export type GraphQLSchemaValidationOptions = {|
328
328
* EXPERIMENTAL:
329
329
*
330
330
* If enabled, items from a plural fields with @stream directive
331
- * are not returned from the iniital query and each item is returned
331
+ * are not returned from the initial query and each item is returned
332
332
* in a patch after the initial result from the synchronous query.
333
333
*
334
334
* Default: false
You can’t perform that action at this time.
0 commit comments