hodur-engine icon indicating copy to clipboard operation
hodur-engine copied to clipboard

Hodur is a domain modeling approach and collection of libraries to Clojure. By using Hodur you can define your domain model as data, parse and validate it, and then either consume your model via an A...

Results 10 hodur-engine issues
Sort by recently updated
recently updated
newest added

(let [conn (hodur/init-schema '[A [^{:type String} b]])] (hodur/extend-schema conn '[C [^{:type String} d]]) (->> @conn (d/q '[:find [(pull ?e [* {:field/_parent [* {:field/type [*]}]}]) ...] :where [?e :type/name] [?e :type/nature...

Hello. This project looks promising. I'm just curious, could the hodur-engine be used on the frontend side. As I understood it already uses a Datascript but it's not clear how...

When using hodur I ran into an issue with names. ```clojure (def meta-db (engine/init-schema '[^{:spec/tag-recursive true :datomic/tag-recursive true} tx [^Integer amount]])) (hodur-spec/defspecs meta-db {:prefix :foo}) ;=> [:foo.tx/amount :foo/tx] (hodur-datomic/schema meta-db)...

Hey! First of all, I want to thank you for this awesome library, I have been using it lately and find it really useful. One thing I wonder about is...

Thanks for sharing your inspirational work. (and the talk at the conj). I have been using umlaut heavily at work and absolutely love it and have written custom generators. I...

More specifically, the dependency function does not filter by the provided tag so, once a node is sent to it, the dependent nodes will get returned even if they are...

Currently it's a bunch of TBDs on the README file

This will be particularly useful for plugins such as the Visualizer for now. The trick might involve something along the lines of a macro somewhat like this: ``` clojure (defmacro...

Using that `default` strategy ended up being artificial since the whole vector can be tagged with meta markers anyway.