Julien Fantin

Results 13 issues of Julien Fantin

Following the README I get the error below when calling `d/get-conn` ``` 2. Unhandled clojure.lang.Compiler$CompilerException Error compiling NO_SOURCE_FILE at (19:3) {:clojure.error/column 3, :clojure.error/line 19, :clojure.error/phase :execution, :clojure.error/source "NO_SOURCE_FILE"} 1. Caused...

I'd like to use this issue to start a discussion on what needs to be done in order to add support for cljs and cljc. Most of what I consider...

One of our transitive dependencies pulls from a custom repository [1] which seems to confuse vizdeps, erroring with: ``` clojure.lang.ExceptionInfo: Exception processing dependencies of [cc.qbits/alia-all "3.3.0" :exclusions [[org.clojure/tools.reader]]]: Exception processing...

Let's say we added a `:gender` key to every user from the README: ```clojure [{:name "Alice", :age 42, :gender :f} {:name "Bob", :age 30, :gender :m} {:name "Barbara", :age 12,...

question

We need to document links and recursive queries syntax in that docstring

1. Should we provide a registration function that registers the pull handler? Yes: nobody likes setup No: we'd need to answer the remaining questions 2. If yes, should we define...

Removing entities can be achieved with `(dissoc db (ref-to db my-entity))`. This is undocumented and it is a subtle operation, because: - It will leave dangling refs in entities who...

Add a `pull-many` function to pull a seq of refs. http://docs.datomic.com/pull.html#api

The parser implementation for re-frame currently uses reagent's `make-reaction` thus bypassing the re-frame subscription cache. We could and probably should leverage the cache by automatically registering our subscription handler and...

The `pull` api was extend by adding an options map used to parametrize database accessors in the query parser. While this allowed `pull` to work with ratoms as well as...