Skip to content

Commit b59e288

Browse files
committed
fill in Todo Spec Sections
1 parent a033219 commit b59e288

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/validator/allRules.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,27 @@ import FieldsOnCorrectType from './rules/FieldsOnCorrectType';
2222
import KnownFragmentNames from './rules/KnownFragmentNames';
2323
// Spec Section: "Fragments must be used"
2424
import NoUnusedFragments from './rules/NoUnusedFragments';
25-
// Spec Section "Fragment spread is possible"
25+
// Spec Section: "Fragment spread is possible"
2626
import PossibleFragmentSpreads from './rules/PossibleFragmentSpreads';
27-
// Spec Section "Fragments must not form cycles"
27+
// Spec Section: "Fragments must not form cycles"
2828
import NoFragmentCycles from './rules/NoFragmentCycles';
29-
// Spec Section "All Variables Used"
29+
// Spec Section: "All Variables Used"
3030
import NoUnusedVariables from './rules/NoUnusedVariables';
31-
// Spec Section "All Variable Used Defined"
31+
// Spec Section: "All Variable Used Defined"
3232
import NoUndefinedVariables from './rules/NoUndefinedVariables';
3333
// Spec Section: "Argument Names"
3434
import KnownArgumentNames from './rules/KnownArgumentNames';
35-
// TODO
35+
// Spec Section: "Directives Are Defined"
3636
import KnownDirectives from './rules/KnownDirectives';
37-
// Spec Section "Argument Values Type Correctness"
37+
// Spec Section: "Argument Values Type Correctness"
3838
import ArgumentsOfCorrectType from './rules/ArgumentsOfCorrectType';
39-
// TODO
39+
// Spec Section: "Directive Arguments Are Of Correct Type"
4040
import DirectivesOfCorrectType from './rules/DirectivesOfCorrectType';
41-
// Spec Section "Variable Default Values Are Correctly Typed"
41+
// Spec Section: "Variable Default Values Are Correctly Typed"
4242
import DefaultValuesOfCorrectType from './rules/DefaultValuesOfCorrectType';
43-
// Spec Section "All Variable Usages Are Allowed"
43+
// Spec Section: "All Variable Usages Are Allowed"
4444
import VariablesInAllowedPosition from './rules/VariablesInAllowedPosition';
45-
// TODO
45+
// Spec Section: "Field Selection Merging"
4646
import OverlappingFieldsCanBeMerged from './rules/OverlappingFieldsCanBeMerged';
4747

4848
/**

0 commit comments

Comments
 (0)