@apollo/federation
Version:
Apollo Federation Utilities
15 lines (12 loc) • 419 B
text/typescript
import { buildSubgraphSchema } from '@apollo/subgraph';
import { deprecate } from 'util';
export { GraphQLSchemaModule } from 'apollo-graphql';
export * from './composition';
/**
* @deprecated Use `buildSubgraphSchema` instead.
*/
export const buildFederatedSchema = deprecate(
buildSubgraphSchema,
`'buildFederatedSchema' is deprecated. Use 'buildSubgraphSchema' instead.`,
);
export { buildSubgraphSchema };