Skip to content

Commit aa2e9ba

Browse files
robrichardlilianammmatos
authored andcommitted
small fixes
1 parent 64521a8 commit aa2e9ba

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
@@ -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(

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
@@ -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
});

src/type/schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import {
2525
import { __Schema } from './introspection';
2626
import {
2727
GraphQLDirective,
28-
GraphQLStreamDirective,
2928
GraphQLDeferDirective,
29+
GraphQLStreamDirective,
3030
isDirective,
3131
specifiedDirectives,
3232
} from './directives';

0 commit comments

Comments
 (0)