ah, so write a new merge for my reconciler? i will try that
@cjhowe no, that would be more work than necessary I think. What I’m saying is
(om/merge! reconciler data)
;; with normalization on, will normalize based on root query
(om/merge! reconciler data (om/get-query ComponentThatMatchesData)
;; with normalization on, will normalize too. But you have finer control of how normalization happens.
(om/merge! reconciler data [])
;; with normalization on, will not normalize.
oh, that's amazing! thanks!
@cjhowe no problem. Let me know how it goes!