UNPKG

@apollo/federation

Version:
15 lines (12 loc) 419 B
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 };