Does webix support graphql subscriptions ?

Hey team, Graphql query and mutation works fine with webix but subscription is not working. Can you please guide me ?

Hello, @Naufil

By default, when using Webix GraphQL proxy, and some event happened on the client, a regular post request is sent to the server. Please, check GraphQL proxy code here: webix/graphql.js at master · webix-hub/webix · GitHub
That means, that in general, it doesn’t support real-time events.
On the other hand, to solve the issue you could use WebSockets.
Here is an article Websocket: Real-time Data Updates for Webix Widgets from our Blog.
Also, a similar topic is described here

Thanks @AlenaLisava for the update.