swc/crates/swc_bundler/tests/.cache/deno/51b9676d22bfed0b3e6e4a6e02abdfffec697446.ts
2021-11-09 20:42:49 +09:00

16 lines
496 B
TypeScript

// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/utilities/concatAST.js
import flatMap from '../polyfills/flatMap.js';
/**
* Provided a collection of ASTs, presumably each from different files,
* concatenate the ASTs together into batched AST, useful for validating many
* GraphQL source files which together represent one conceptual application.
*/
export function concatAST(asts) {
return {
kind: 'Document',
definitions: flatMap(asts, ast => ast.definitions)
};
}