check printing

This commit is contained in:
Bryce Covert
2018-08-23 18:28:35 -07:00
parent 9629730403
commit 2ea6ca576f
8 changed files with 362 additions and 315 deletions

View File

@@ -0,0 +1,36 @@
(ns auto-ap.datomic.bank-accounts
(:require [datomic.api :as d]
[auto-ap.datomic :refer [uri]]
[clj-time.coerce :as c]
[clojure.set :refer [rename-keys]]))
(defn add-arg [query name value where & rest]
(let [query (-> query
(update :args conj value)
(update-in [:query :in] conj name)
(update-in [:query :where] conj where))]
(reduce #(update-in %1 [:query :where] conj %2) query rest)))
(def default-read '(pull ?e [*]))
(defn <-datomic [x]
(->> x
(map #(update % :bank-account/type :db/ident))
))
(defn get-by-id [id]
(->>
(d/query (-> {:query {:find [default-read]
:in ['$]
:where []}
:args [(d/db (d/connect uri))]}
(add-arg '?e (cond-> id (string? id) Long/parseLong) ['?e])))
(map first)
(<-datomic)
(first)))