This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-07
Channels
- # announcements (6)
- # babashka (17)
- # beginners (72)
- # calva (27)
- # cider (26)
- # circleci (6)
- # clj-kondo (35)
- # cljdoc (3)
- # clojure (22)
- # clojure-australia (2)
- # clojure-dev (45)
- # clojure-france (2)
- # clojure-italy (2)
- # clojurescript (60)
- # conjure (16)
- # cursive (8)
- # datahike (10)
- # datascript (1)
- # datomic (3)
- # emacs (5)
- # fulcro (16)
- # graalvm (4)
- # honeysql (1)
- # joker (10)
- # luminus (3)
- # malli (7)
- # off-topic (28)
- # pathom (4)
- # pedestal (2)
- # polylith (1)
- # re-frame (6)
- # reagent (9)
- # reveal (4)
- # shadow-cljs (48)
- # slack-help (1)
- # tools-deps (30)
- # vim (24)
Ah go to sleep, wake up, and find the solution immediately. As always happens. Followed the steps here and the ec2 instance now has proper s3 permissions: https://forum.datomic.com/t/ion-deploy-fails-due-to-access-denied/685/6
In a recursive pull expression, is there a way to specify both the limit and the attributes ?
How do Datomic queries handle a relation binding input with a nil variable? e.g.,
[:find ?release
:in $ [[?artist-name ?release-name]]
:where [?artist :artist/name ?artist-name]
[?release :release/artists ?artist]
[?release :release/name ?release-name]]
;; args
[db [["John Lennon" "Mind Games"]
["Paul McCartney" nil]]]