You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
GraphQL subscriptions enables clients to receive real-time data. While WebSocket based implementations are currently the most popular options, they come with a big drawback - for each subscription you need to maintain persistent connection.
Describe the solution you'd like
Apollo router supports HTTP callback mechanism that allows subgraphs to post their updates without the need to maintain persistent connection. By using callbacks we can scale our subgraphs more easily.
Is your feature request related to a problem? Please describe.
GraphQL subscriptions enables clients to receive real-time data. While WebSocket based implementations are currently the most popular options, they come with a big drawback - for each subscription you need to maintain persistent connection.
Describe the solution you'd like
Apollo router supports HTTP callback mechanism that allows subgraphs to post their updates without the need to maintain persistent connection. By using callbacks we can scale our subgraphs more easily.
Describe alternatives you've considered
N/A
Additional context
HTTP callback protocol documentation
The text was updated successfully, but these errors were encountered: