
import { withAugmentedIntrospection } from "./withAugmentedIntrospection";
import { withSchemaFiltering } from "./withSchemaFiltering";
import { withTypeDeduction } from "./withTypeDeduction";

export function withCoreAddons ( ) {
  withAugmentedIntrospection();
  withSchemaFiltering();
  withTypeDeduction();
}
