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 @@ -396,8 +396,6 @@ function executeOperation(
396
396
397
397
exeContext . dispatcher . add (
398
398
label ,
399
- // TODO: `path` is initially "undefined", which essentially means "root",
400
- // investigate if "undefined" is a valid path value.
401
399
path ,
402
400
( ) =>
403
401
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 @@ -189,7 +189,6 @@ export const GraphQLDeferDirective = new GraphQLDirective({
189
189
label : {
190
190
type : GraphQLNonNull ( GraphQLString ) ,
191
191
description : 'Unique name' ,
192
- // TODO: Add defaultValue for label?
193
192
} ,
194
193
} ,
195
194
} ) ;
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ import {
25
25
import { __Schema } from './introspection' ;
26
26
import {
27
27
GraphQLDirective ,
28
- GraphQLStreamDirective ,
29
28
GraphQLDeferDirective ,
29
+ GraphQLStreamDirective ,
30
30
isDirective ,
31
31
specifiedDirectives ,
32
32
} from './directives' ;
You can’t perform that action at this time.
0 commit comments