This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-30
Channels
- # admin-announcements (1)
- # adventofcode (2)
- # announcements (2)
- # babashka (60)
- # beginners (48)
- # cherry (1)
- # cider (16)
- # clj-kondo (4)
- # clojure (53)
- # clojure-belgium (3)
- # clojure-europe (20)
- # clojure-nl (1)
- # clojure-norway (6)
- # clojure-poland (4)
- # clojure-uk (6)
- # clojuredesign-podcast (19)
- # clojurescript (39)
- # community-development (12)
- # cursive (4)
- # datalevin (7)
- # datomic (23)
- # honeysql (14)
- # hyperfiddle (3)
- # instaparse (3)
- # lsp (3)
- # malli (10)
- # off-topic (34)
- # overtone (8)
- # polylith (2)
- # re-frame (9)
- # reitit (3)
- # releases (1)
- # squint (16)
- # timbre (7)
- # wasm (2)
- # xtdb (8)
Hello everyone Given entities like
{:a/b {:b/d :id-of-some-other-entity}}
How can I query such that the path [:a/b :b/d] is replaced with the entity of the given id?
I tried pull syntax, but i could only get it to work for replacing top-level id keys.hi there, has anybody ever needed a "standalone XTDB UI" for connecting to a remote DB? I know it's doable but I was wondering if somebody has already done it and I can take a look (wink wink) at the code 😄
Hey @U0C8489U6 as in, over HTTP? (and not nrepl)
well we were kind of wondering if we could just point to postgres 😄
this is the closest I've seen to a thin client UX over http https://github.com/elh/xtbb
if you just want to point something at Postgres, you could use https://github.com/tatut/xtdb-inspector it will have to re-index locally, of course (or maybe you can bootstrap from a checkpoint too)
The former relies on the endpoint (which we don't have exposed in prod) https://github.com/elh/xtbb/blob/main/xtbb.clj#L21 I'll check the second by thanks!