This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-06-18
Channels
- # announcements (35)
- # babashka (31)
- # beginners (77)
- # biff (23)
- # calva (1)
- # clj-kondo (4)
- # cljsrn (3)
- # clojure (71)
- # clojure-dev (9)
- # clojure-europe (51)
- # clojure-france (3)
- # clojure-germany (1)
- # clojure-nl (3)
- # clojure-spec (9)
- # clojure-uk (42)
- # clojurescript (24)
- # clojureverse-ops (3)
- # component (16)
- # cursive (1)
- # data-science (8)
- # emacs (1)
- # fulcro (5)
- # graalvm-mobile (1)
- # graphql (2)
- # honeysql (36)
- # leiningen (3)
- # malli (3)
- # off-topic (16)
- # remote-jobs (1)
- # sql (3)
- # testing (19)
- # tools-deps (11)
- # xtdb (20)
I'm trying to set up graphql client with re-graph
https://github.com/oliyh/re-graph on cljsrn. It works perfectly on web project. But, it seems not working on cljsrn. I've tested the re-frame works in my app. But nothing happen when I dispatch query event to my api. Is there any additional deps to make it work?
@woonki.moon You should check to see what re-graph uses for making HTTP requests. What’s available on RN is different from what’s available in browsers.
@joshmiller Definitely, you're right. I'm gonna digging in what the re-graph uses to make a http request in it's source.
👍 3