This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-05-16
Channels
- # announcements (5)
- # aws (34)
- # beginners (145)
- # cider (48)
- # circleci (8)
- # clara (7)
- # clj-kondo (28)
- # cljs-dev (75)
- # cljsrn (4)
- # clojure (325)
- # clojure-czech (10)
- # clojure-europe (5)
- # clojure-italy (4)
- # clojure-nl (4)
- # clojure-spec (6)
- # clojure-sweden (3)
- # clojure-uk (70)
- # clojurescript (18)
- # clr (1)
- # community-development (2)
- # cursive (38)
- # data-science (7)
- # datascript (14)
- # datomic (22)
- # emacs (2)
- # figwheel (1)
- # fulcro (6)
- # graalvm (22)
- # graphql (11)
- # hoplon (12)
- # jackdaw (8)
- # jobs-discuss (16)
- # juxt (5)
- # leiningen (19)
- # luminus (5)
- # nrepl (2)
- # nyc (1)
- # off-topic (6)
- # overtone (2)
- # pedestal (10)
- # re-frame (6)
- # reagent (8)
- # reitit (1)
- # rewrite-clj (43)
- # ring (2)
- # shadow-cljs (124)
- # testing (1)
- # vim (22)
- # xtdb (77)
- # yada (4)
Hi, I know this is asked regularly but I'm afraid I can't remember the answer: what's the best Clojure/JVM GraphQL client these days? We're writing a new service that needs to fetch some data from our Lacinia backend.
Tried the re-graph client https://github.com/oliyh/re-graph and I'm planning to check out Artemis. https://github.com/workframers/artemis
I’m just using plain HTTP from the browser. Works fine if your queries are static or only need to use variables.
We’re using district0x/graphql-query
of the venia family, though I’m nonplussed that none of the popular forks seem to escape string literals correctly.
hi guys, I can't find examples of how to implement pagination using lacinia
, I have common use-cases for this.
A coworker of mine hand wrote an implementation of the relay cursor connection: https://facebook.github.io/relay/graphql/connections.htm . To the best of my knowledge, Lacinia doesn’t provide it out of the box but you can implement it.
@lennart.buit I was looking for other projects that implemented that specification 😕
I would be equally interested because we currently have in house solutions for the relay conventions