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(
392392
393393 exeContext . dispatcher . add (
394394 label ,
395- // TODO: `path` is initially "undefined", which essentially means "root",
396- // investigate if "undefined" is a valid path value.
397395 path ,
398396 ( ) =>
399397 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 @@ -186,7 +186,6 @@ export const GraphQLDeferDirective = new GraphQLDirective({
186186 label : {
187187 type : GraphQLNonNull ( GraphQLString ) ,
188188 description : 'Unique name' ,
189- // TODO: Add defaultValue for label?
190189 } ,
191190 } ,
192191} ) ;
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import {
2424import { __Schema } from './introspection' ;
2525import {
2626 GraphQLDirective ,
27- GraphQLStreamDirective ,
2827 GraphQLDeferDirective ,
28+ GraphQLStreamDirective ,
2929 isDirective ,
3030 specifiedDirectives ,
3131} from './directives' ;
You can’t perform that action at this time.
0 commit comments