om

Please ask the channel first, not @dnolen directly!
2017-09-17T04:55:01.000031Z

ah, so write a new merge for my reconciler? i will try that

levitanong 2017-09-17T05:20:11.000032Z

@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.

2017-09-17T07:35:40.000003Z

oh, that's amazing! thanks!

levitanong 2017-09-17T07:43:00.000014Z

@cjhowe no problem. Let me know how it goes!