Skip to content

Commit 2253d0a

Browse files
committed
small fixes
1 parent b72be83 commit 2253d0a

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
@@ -395,8 +395,6 @@ function executeOperation(
395395

396396
exeContext.dispatcher.add(
397397
label,
398-
// TODO: `path` is initially "undefined", which essentially means "root",
399-
// investigate if "undefined" is a valid path value.
400398
path,
401399
() =>
402400
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)