Skip to content

v0.20.2

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Oct 15:58
· 10 commits to main since this release
afda209

Patch Changes

  • #198 1b98c17 Thanks @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!
      }