UNPKG

360 BTypeScriptView Raw
1import { DocumentNode } from '../language/ast';
2
3/**
4 * Provided a collection of ASTs, presumably each from different files,
5 * concatenate the ASTs together into batched AST, useful for validating many
6 * GraphQL source files which together represent one conceptual application.
7 */
8export function concatAST(asts: ReadonlyArray<DocumentNode>): DocumentNode;