Skip to content

fill in Todo Spec Sections #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/validator/allRules.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@ import FieldsOnCorrectType from './rules/FieldsOnCorrectType';
import KnownFragmentNames from './rules/KnownFragmentNames';
// Spec Section: "Fragments must be used"
import NoUnusedFragments from './rules/NoUnusedFragments';
// Spec Section "Fragment spread is possible"
// Spec Section: "Fragment spread is possible"
import PossibleFragmentSpreads from './rules/PossibleFragmentSpreads';
// Spec Section "Fragments must not form cycles"
// Spec Section: "Fragments must not form cycles"
import NoFragmentCycles from './rules/NoFragmentCycles';
// Spec Section "All Variables Used"
// Spec Section: "All Variables Used"
import NoUnusedVariables from './rules/NoUnusedVariables';
// Spec Section "All Variable Used Defined"
// Spec Section: "All Variable Used Defined"
import NoUndefinedVariables from './rules/NoUndefinedVariables';
// Spec Section: "Argument Names"
import KnownArgumentNames from './rules/KnownArgumentNames';
// TODO
// Spec Section: "Directives Are Defined"
import KnownDirectives from './rules/KnownDirectives';
// Spec Section "Argument Values Type Correctness"
// Spec Section: "Argument Values Type Correctness"
import ArgumentsOfCorrectType from './rules/ArgumentsOfCorrectType';
// TODO
// Spec Section: "Directive Arguments Are Of Correct Type"
import DirectivesOfCorrectType from './rules/DirectivesOfCorrectType';
// Spec Section "Variable Default Values Are Correctly Typed"
// Spec Section: "Variable Default Values Are Correctly Typed"
import DefaultValuesOfCorrectType from './rules/DefaultValuesOfCorrectType';
// Spec Section "All Variable Usages Are Allowed"
// Spec Section: "All Variable Usages Are Allowed"
import VariablesInAllowedPosition from './rules/VariablesInAllowedPosition';
// TODO
// Spec Section: "Field Selection Merging"
import OverlappingFieldsCanBeMerged from './rules/OverlappingFieldsCanBeMerged';

/**
Expand Down