Hi all, I'm using re-graph and Lacinia and seeing the following error: Firefox can't establish a connection to the server at Everything works when I initialize re-graph like so:
(re-frame/dispatch
[::re-graph/init {:ws nil
:http {
:supported-operations #{:query}
:parameters {:with-credentials? false}}}])
but it breaks down if I change this to
(re-frame/dispatch [::re-graph/init {}])
Does this mean that I haven't set up Lacinia properly to use websockets? How can I correct this?Not sure it works the same with the latest version, but this works with subscriptions. https://github.com/gklijs/bkes-demo/blob/b57d3d6c9f73671e61a8fbabaede1abc12667ab7/frontend/src/cljs/nl/openweb/bank/core.cljs#L25
Thanks! I've been poring over your project today actually @gklijs
Let me try that