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(
396396
397397 exeContext . dispatcher . add (
398398 label ,
399- // TODO: `path` is initially "undefined", which essentially means "root",
400- // investigate if "undefined" is a valid path value.
401399 path ,
402400 ( ) =>
403401 executeFields (
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export {
5656 GraphQLIncludeDirective ,
5757 GraphQLSkipDirective ,
5858 GraphQLDeferDirective ,
59+ GraphQLStreamDirective ,
5960 GraphQLDeprecatedDirective ,
6061 // "Enum" of Type Kinds
6162 TypeKind ,
Original file line number Diff line number Diff line change @@ -189,7 +189,6 @@ export const GraphQLDeferDirective = new GraphQLDirective({
189189 label : {
190190 type : GraphQLNonNull ( GraphQLString ) ,
191191 description : 'Unique name' ,
192- // TODO: Add defaultValue for label?
193192 } ,
194193 } ,
195194} ) ;
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ import {
2525import { __Schema } from './introspection' ;
2626import {
2727 GraphQLDirective ,
28- GraphQLStreamDirective ,
2928 GraphQLDeferDirective ,
29+ GraphQLStreamDirective ,
3030 isDirective ,
3131 specifiedDirectives ,
3232} from './directives' ;
You can’t perform that action at this time.
0 commit comments