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 @@ -395,8 +395,6 @@ function executeOperation(
395
395
396
396
exeContext . dispatcher . add (
397
397
label ,
398
- // TODO: `path` is initially "undefined", which essentially means "root",
399
- // investigate if "undefined" is a valid path value.
400
398
path ,
401
399
( ) =>
402
400
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