We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff03f74 + b912e5f commit b4b2b79Copy full SHA for b4b2b79
2 files changed
src/wanderung/datom.clj
@@ -1,7 +1,7 @@
1
(ns wanderung.datom
2
(:require [clojure.spec.alpha :as spec]))
3
4
-(spec/def :datom/eid number?)
+(spec/def :datom/eid (spec/or :id number? :tempid string?))
5
(spec/def :datom/attribute keyword?)
6
(spec/def :datom/value any?)
7
(spec/def :datom/transaction-id :datom/eid)
src/wanderung/datomic_cloud.clj
@@ -116,5 +116,5 @@
116
v) tx added])))
117
data-extract (mapcat (fn [{:keys [data]}]
118
(into [] map-db-ident data)))
119
- tx-data (d/tx-range conn {:start start-tx})]
+ tx-data (d/tx-range conn {:start start-tx :limit -1})]
120
(into [] data-extract tx-data)))
0 commit comments