From 0bae7bad6d7777c7f3176993729f3e7972e02920 Mon Sep 17 00:00:00 2001 From: Denis Badurina Date: Wed, 15 Apr 2026 13:16:04 +0200 Subject: [PATCH 1/2] some more --- .../index.mdx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx b/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx index dcfdeeb4..8c3b9ffb 100644 --- a/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx +++ b/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx @@ -11,6 +11,15 @@ authors: [enisdenjo] data across multiple subgraphs, with automatic entity resolution, full protocol coverage, and zero special configuration required on the client side. +This is the most complete GraphQL subscriptions implementation available - covering every major +protocol, transport, and delivery model in the ecosystem. It was built by Denis, the maintainer of +[graphql-ws](https://github.com/enisdenjo/graphql-ws), [graphql-sse](https://github.com/enisdenjo/graphql-sse), +and [graphql-http](https://github.com/graphql/graphql-http) - the libraries that power subscriptions +across most of the GraphQL ecosystem today. + +This also means that the [Rust query planner in Hive Gateway](/product-updates/2025-11-17-hive-gateway-rust-query-planner) +now supports subscriptions as well. + ## All Protocols, One Router Hive Router covers the entire subscriptions protocol landscape - both for client-to-router and @@ -134,6 +143,12 @@ websocket: --- +Also worth noting if you haven't seen them yet - the [Hive Router plugin system](/product-updates/2026-03-05-hive-router-plugin-system) +lets you extend and customize the router with native Rust plugins, and the [new Laboratory](/product-updates/2026-01-28-new-laboratory) +brings a redesigned, editor-driven GraphQL IDE experience. + +--- + - [Subscriptions overview](/docs/router/subscriptions) - [Server-Sent Events](/docs/router/subscriptions/sse) - [Incremental Delivery over HTTP](/docs/router/subscriptions/incremental-delivery) From 93d2591c955f49f99aab13038a88345407319e68 Mon Sep 17 00:00:00 2001 From: Denis Badurina Date: Wed, 15 Apr 2026 13:19:12 +0200 Subject: [PATCH 2/2] info callout --- .../2026-04-14-hive-router-subscriptions/index.mdx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx b/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx index 8c3b9ffb..3fee7e63 100644 --- a/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx +++ b/packages/documentation/content/product-updates/2026-04-14-hive-router-subscriptions/index.mdx @@ -7,6 +7,8 @@ date: 2026-04-14 authors: [enisdenjo] --- +import { Callout } from "@hive/design-system/hive-components/callout"; + [Hive Router](/docs/router) now supports **federated GraphQL subscriptions** out of the box. Real-time data across multiple subgraphs, with automatic entity resolution, full protocol coverage, and zero special configuration required on the client side. @@ -17,8 +19,12 @@ protocol, transport, and delivery model in the ecosystem. It was built by Denis, and [graphql-http](https://github.com/graphql/graphql-http) - the libraries that power subscriptions across most of the GraphQL ecosystem today. -This also means that the [Rust query planner in Hive Gateway](/product-updates/2025-11-17-hive-gateway-rust-query-planner) -now supports subscriptions as well. + + +This also means that the [Rust Query Planner in Hive Gateway](/docs/gateway/other-features/rust-query-planner) +now supports subscriptions as well! + + ## All Protocols, One Router