Patch Changes
-
#198
1b98c17Thanks @User!, @User!! - Fix public schema SDL in case a object type implements an inaccessible interface.Composing the following subgraph:
schema @link( url: "https://specs.apollo.dev/federation/v2.3" import: ["@inaccessible"] ) { query: Query } type Query { } interface Node @inaccessible { id: ID! } type User implements Node { id: ID! }
now result in the following valid public SDL:
type Query { } - type User implements Node { + type User { id: ID! }