Fork me on GitHub
#om
<
2017-09-17
>
cjhowe04:09:01

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

levitanong05:09:11

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

cjhowe07:09:40

oh, that's amazing! thanks!

levitanong07:09:00

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