Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 2 additions & 26 deletions docs/source/reference/federation/versions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,8 @@ For a comprehensive changelog for Apollo Federation and its associated libraries
| ------------- | --------------------- | ---------------------- |
| **February 2025** | **Yes** | **`2.0.0`** |

#### Directive changes

#### `@connect`

Introduced. [Learn more](/graphos/schema-design/connectors/directives#connect).

```graphql showLineNumbers=false disableCopy=true
directive @connect(
source: String
http: ConnectHTTP!
selection: JSONSelection!
entity: Boolean
) repeatable on FIELD_DEFINITION;

```

#### `@source`

Introduced. [Learn more](/graphos/schema-design/connectors/directives#source).

```graphql showLineNumbers=false disableCopy=true
directive @source(
name: String!
http: SourceHTTP!
) repeatable on SCHEMA;
```
Federation v2.10 is a prerequisite for the Connector specification that introduces the `@connect` and `@source` directives.
[Learn more.](/graphos/schema-design/connectors/directives)

## v2.9

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Frequently asked questions when transitioning from Apollo Federatio

## Is official support ending for `@apollo/gateway` v0.x?

Yes. As of 15 November 2022, `@apollo/gateway` v0.x is officially deprecated, with end-of-life scheduled for 22 September 2023. `@apollo/gateway` v2.x remains fully supported.
Yes. `@apollo/gateway` v0.x was officially deprecated as of 15 November 2022 and reached end-of-life on 22 September 2023. `@apollo/gateway` v2.x remains fully supported.

[Learn more about deprecation and end-of-life.](https://www.apollographql.com/docs/resources/product-launch-stages#stages-for-discontinuing-support)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ type Product @key(fields: "upc") {
```graphql title="Reviews subgraph"
type Product @key(fields: "productUpc") {
productUpc: ID!
inStock: Boolean!
rating: Int!
}
```

Expand Down