datomic

Ask questions on the official Q&A site at https://ask.datomic.com!
2021-02-07T08:27:59.163300Z

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

niveauverleih 2021-02-07T18:06:39.165100Z

In a recursive pull expression, is there a way to specify both the limit and the attributes ?

kenny 2021-02-07T19:50:40.165900Z

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]]]