UNPKG

502 BTypeScriptView Raw
1import { ValidationContext } from "../ValidationContext";
2import { ASTVisitor } from "../../language/visitor";
3
4export function noSubselectionAllowedMessage(fieldName: string, type: string): string;
5
6export function requiredSubselectionMessage(fieldName: string, type: string): string;
7
8/**
9 * Scalar leafs
10 *
11 * A GraphQL document is valid only if all leaf fields (fields without
12 * sub selections) are of scalar or enum types.
13 */
14export function ScalarLeafs(context: ValidationContext): ASTVisitor;