Use GraphQL subscription to show progress of time-consuming operations

1 · Eana Hufwe · Jan. 28, 2021, 5:49 p.m.
GraphQL is feature-rich query language designed to fit majority of needs of generic online applications. The 3 main types of operations in GraphQL are query, mutation and subscription. While queries and mutations are send in HTTP requests, subscriptions are running on WebSocket, which enables it to receive updates in real time. In this article, I… Continue reading Use GraphQL subscription to show progress of time-consuming operations The post Use GraphQL subscription to show progress of time-con...