Skip to content

@pothos/plugin-federation@4.5.0

Choose a tag to compare

@github-actions github-actions released this 23 Jul 19:25
· 36 commits to main since this release
293fbac

Minor Changes

  • 7f951c3: Add FieldSet type that can be used to define selections that can't be expressed with
    SelectionFromShape, like selections with inline fragments on union or interface fields:

    builder.selection(
      "media { ... on Image { url } ... on Video { url } }" as FieldSet<{
        media: Media[];
      }>,
    );