UNPKG

@apollo/query-planner

Version:
10 lines (8 loc) 307 B
import { QueryPlan } from './'; import prettyFormat from 'pretty-format'; import { astSerializer, queryPlanSerializer } from './snapshotSerializers'; export function prettyFormatQueryPlan(queryPlan: QueryPlan) { return prettyFormat(queryPlan, { plugins: [queryPlanSerializer, astSerializer], }); }