Skip to content

Commit 835ae90

Browse files
committed
small fixes
1 parent dd344e8 commit 835ae90

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

src/execution/execute.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export {
5656
GraphQLIncludeDirective,
5757
GraphQLSkipDirective,
5858
GraphQLDeferDirective,
59+
GraphQLStreamDirective,
5960
GraphQLDeprecatedDirective,
6061
// "Enum" of Type Kinds
6162
TypeKind,

src/type/directives.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
});

src/type/schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import {
2424
import { __Schema } from './introspection';
2525
import {
2626
GraphQLDirective,
27-
GraphQLStreamDirective,
2827
GraphQLDeferDirective,
28+
GraphQLStreamDirective,
2929
isDirective,
3030
specifiedDirectives,
3131
} from './directives';

0 commit comments

Comments
 (0)