Skip to content

@apollo/subgraph@2.15.0

Latest

Choose a tag to compare

@github-actions github-actions released this 28 Aug 17:48
631c148

This release is a generic reimplementation of @apollo/subgraph
that can be used with any graphql-js compatible subgraphs. Unless
otherwise noted, behavior is intended to stay compatible with the
previous implementation.

Changed

  • Use graphql-js functionality over custom logic. All logic is now
    re-implemented using graphql-js functionality. @apollo/federation-internals is no
    longer a dependency.
  • printSubgraphSchema now prints the complete schema, federation
    directives, types, and root fields included. NOTE: It is just a thin wrapper around
    @graphql-tools/utils's printSchemaWithDirectives.

Removed

  • LegacySchemaModule input shape. buildSubgraphSchema no longer accepts
    Apollo Server's old { typeDefs, resolvers } object shape. Pass an array of
    { typeDefs, resolvers } modules (or a bare DocumentNode) instead:

    - buildSubgraphSchema({ typeDefs, resolvers })
    + buildSubgraphSchema([{ typeDefs, resolvers }])