UNPKG

443 BTypeScriptView Raw
1import { ValidationRule, SDLValidationRule } from './ValidationContext';
2
3/**
4 * This set includes all validation rules defined by the GraphQL spec.
5 *
6 * The order of the rules in this list has been adjusted to lead to the
7 * most clear output when encountering multiple validation errors.
8 */
9export const specifiedRules: ReadonlyArray<ValidationRule>;
10
11/**
12 * @internal
13 */
14export const specifiedSDLRules: ReadonlyArray<SDLValidationRule>;