Skip to content

Commit

Permalink
docs: removes unnecessary breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Sep 23, 2021
1 parent 8324d4c commit b53b452
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions docs/source/supergraphs.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,20 +87,3 @@ We aim to reduce the frequency at which these paired updates are necessary by ma
|---|---|
|<= v0.2.x|<= v0.38.x|
|>= v0.3.x|>= v0.39.x|

##### `@tag` directives in newer versions of Rover/the gateway

When updating to a gateway >= v0.39.x, all subgraph schemas with `@tag` directives will need to make those types repeatable not only on `FIELD_DEFINITION`, but also on `OBJECT`, `INTERFACE`, and `UNION`.

Before:

```graphql
directive @tag(name: String!) repeatable on FIELD_DEFINITION
```

After:

```graphql
directive @tag(name: String!) repeatable on FIELD_DEFINITION | INTERFACE | OBJECT | UNION
```

0 comments on commit b53b452

Please sign in to comment.