This release changes:
init have been reorganised to separate websocket and http parameters as follows:Previously:
(re-frame/dispatch [::re-graph/init {:ws-url "wss://foo.io/graphql-ws" :connection-init-payload {} :http-url "http://bar.io/graphql"}])
Now:
(re-frame/dispatch [::re-graph/init {:ws {:url "wss://foo.io/graphql-ws" :connection-init-payload {}} :http {:url "http://bar.io/graphql"}}])
See the README for all option parameters.
This release adds support for:
:impl option) e.g. sharing a cookie store as per #58This release improves: