diff --git a/docs/source/reference/federation/versions.mdx b/docs/source/reference/federation/versions.mdx index 168631d52..f6d309911 100644 --- a/docs/source/reference/federation/versions.mdx +++ b/docs/source/reference/federation/versions.mdx @@ -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 diff --git a/docs/source/reference/migration/backward-compatibility.mdx b/docs/source/reference/migration/backward-compatibility.mdx index fa1bee5f1..0a23513f9 100644 --- a/docs/source/reference/migration/backward-compatibility.mdx +++ b/docs/source/reference/migration/backward-compatibility.mdx @@ -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) diff --git a/docs/source/schema-design/federated-schemas/entities/intro.mdx b/docs/source/schema-design/federated-schemas/entities/intro.mdx index 2ee4c1de1..199851047 100644 --- a/docs/source/schema-design/federated-schemas/entities/intro.mdx +++ b/docs/source/schema-design/federated-schemas/entities/intro.mdx @@ -106,7 +106,7 @@ type Product @key(fields: "upc") { ```graphql title="Reviews subgraph" type Product @key(fields: "productUpc") { productUpc: ID! - inStock: Boolean! + rating: Int! } ```