Skip to Content

Realtime Subscriptions

Published: 2022-05-23

Some applications, like e.g. a stock broker application, might have realtime data requirements. It's not enough for the client to poll for new data regularly. Data should be pushed to clients as it becomes available. WunderGraph offers multiple solutions to this problem.

GraphQL Subscriptions#

Any GraphQL server that supports GraphQL Subscriptions works with WunderGraph out of the box. There's just one small difference between GraphQL Subscriptions using WunderGraph vs. using a regular GraphQL client.

While most regular GraphQL clients require some extra setup, establishing WebSockets, etc., WunderGraph supports Subscriptions out of the box with no extra setup.

Let's look at an example:

subscription PriceUpdates {
updatedPrice {
upc
name
price
reviews {
id
body
}
}
}

This GraphQL Subscription translates to the following client code:

const IndexPage = ({products}) => {
const priceUpdate = useSubscription.PriceUpdates(); // auto generated
return (
<div>
{JSON.stringify(priceUpdate)}
</div>
)
}

The UI updates automatically as new data becomes available. No extra client setup, no WebSockets. Just plain HTTP/2 Streams (or a fallback to chunked encoding) for the folks who are interested in some of the details.

Apollo Federation GraphQL Subscriptions#

Some of you might know Apollo Federation already. If you don't, no worries, you can skip this section. For all the others, yes, we support GraphQL Subscriptions for Apollo Federation.

All you have to do is add Subscriptions to your GraphQL Servers (subgraphs) and we do the rest. Here's a Demo if you're interested in trying it out yourself.

Live Queries#

Not every system is capable of implementing GraphQL Subscriptions. You might not have the resources to migrate legacy REST or SOAP APIs to GraphQL. At the same time, you'd like to add some realtime functionality to your applications.

WunderGraph to the rescue, we're able to turn every Query into a Live-Query, with just one piece of configuration.

Take the following Query as an example:

query TopProducts {
topProducts {
upc
name
price
}
}

Using the following configuration, we're enabling Live-Queries for the TopProducts Query.

const operations: ConfigureOperations = {
...
TopProducts: config => ({
...
liveQuery: {
enable: true,
pollingIntervalSeconds: 2,
},
...
}),
...
}

On the WunderNode we would keep polling the origin every two seconds. If there's new data, we'd update all clients who subscribed to this live query. Calling this Live-Query from the clients looks very similar to a regular Query:

const IndexPage = () => {
const {response: liveProducts} = useLiveQuery.TopProducts();
return (
<div>
{JSON.stringify(liveProducts)}
</div>
)
}

Swap useQuery for useLiveQuery and you're done. The UI will update automatically when the data changes.

Why Server-Side Polling is amazing#

You might be thinking that polling is not reactive, wasteful and stupid. We think it's brilliant!

Client side polling would indeed be a wasteful operation. However, with server-side polling, we're able to reduce the number of active "polling" instances up to 1:n. Meaning, for data that's available to many users, e.g. multiple users subscribing to the same chat, we only have to have one single polling instance at a time.

With the potential waste of resources addressed, we'd like to point the real benefit of Live Queries.

You might already know that WunderGraph doesn't just support GraphQL as a DataSource. Currently, we're also offering REST APIs with more to come. It doesn't matter which protocol your upstream talks. Live-Queries are available to all services that are compatible with WunderGraph.

This means you're able to build Realtime Applications using a stateless implementation!

Serverless GraphQL Subscriptions / Live Queries#

As we've explained above, WunderGraph is capable of massively reducing the amount of active polling instances. Thousands of Live-Queries might be mapped to just a handful of active polling sessions.

With that in mind, you're able to build Realtime Applications using a Serverless architecture. Serverless, by default, doesn't support Subscriptions. With WunderGraph, you can build amazing realtime applications without the complexity of handling stateful connections.

Just pick a reasonable polling interval, and we're ready to go.

Throughout this whole section of the docs, we've kept talking about the WunderGraph client. It's time to take a closer look at it.


Product

Comparisons

Subscribe to our newsletter!

Stay informed when great things happen! Get the latest news about APIs, GraphQL and more straight into your mailbox.

© 2022 WunderGraph