federation icon indicating copy to clipboard operation
federation copied to clipboard

Federation 2.1.2 changes ordering of directives for `@deprecated` fields with `@join__field`

Open grxy opened this issue 2 years ago • 0 comments

Before (federation 2.1.1)

type MyType {
  myField: Boolean! @deprecated(reason: "...") @join__field(graph: SUBGRAPH)
}

After (federation 2.1.2)

type MyType {
  myField: Boolean! @join__field(graph: SUBGRAPH) @deprecated(reason: "...")
}

This was generated with rover supergraph compose with federation_version set to 2.

grxy avatar Sep 21 '22 19:09 grxy