File tree Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -392,8 +392,6 @@ function executeOperation(
392
392
393
393
exeContext . dispatcher . add (
394
394
label ,
395
- // TODO: `path` is initially "undefined", which essentially means "root",
396
- // investigate if "undefined" is a valid path value.
397
395
path ,
398
396
( ) =>
399
397
executeFields (
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export {
56
56
GraphQLIncludeDirective ,
57
57
GraphQLSkipDirective ,
58
58
GraphQLDeferDirective ,
59
+ GraphQLStreamDirective ,
59
60
GraphQLDeprecatedDirective ,
60
61
// "Enum" of Type Kinds
61
62
TypeKind ,
Original file line number Diff line number Diff line change @@ -186,7 +186,6 @@ export const GraphQLDeferDirective = new GraphQLDirective({
186
186
label : {
187
187
type : GraphQLNonNull ( GraphQLString ) ,
188
188
description : 'Unique name' ,
189
- // TODO: Add defaultValue for label?
190
189
} ,
191
190
} ,
192
191
} ) ;
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import {
24
24
import { __Schema } from './introspection' ;
25
25
import {
26
26
GraphQLDirective ,
27
- GraphQLStreamDirective ,
28
27
GraphQLDeferDirective ,
28
+ GraphQLStreamDirective ,
29
29
isDirective ,
30
30
specifiedDirectives ,
31
31
} from './directives' ;
You can’t perform that action at this time.
0 commit comments