tree->db
/ normalize*
appears to fall apart when keys in the query have params. Does that sound right, or am I doing something wrong?
For instance, in this (let [[k sel] (util/join-entry expr) …)
: https://github.com/omcljs/om/blob/master/src/main/om/next.cljc#L1956
If the key of the join entry has params, k
will look like (:key {:some-params})
but later it looks up the value in the data as (get data k)
Or does Om expect the key params to be in the keys in the response?
@peeja sounds like a bug
Actually, now that I'm playing with it, having the params in the response is pretty helpful. 🙂
@peeja in the tree->db
response?