Hi, is there a way to process markdown in om.next?
@sova: I did this little project that uses a library that reads markdown, that's an Untangled app: https://github.com/chrismurrph/wandering
@cjmurphy cool! thanks
When you use recursion in a query, how much of it recurses? The whole thing?
(That doesn't seem very useful, as your root query probably doesn't apply at whatever position you're recursing from.)
@peeja recurses forever
You can use an integer instead of ...
to limit recursion
I don't mean how deep, I mean how much of the query is "re-mounted" at the recursion point?
@peeja hrm. so the current query is recursed in the normal case.
in the union case, the union query is
The entire query from the root?
no
Oh, "current" as in the key it's joined to?
[:id :title {:child …}]
=> [:id :title {:child [:id :title {:child …}]}]
etc ?
basically
That makes sense
is there a way to force a re-read of keys outside of component scope?
@sova are you talking about in a transact!, a mutation, or?
Yes, can I do a transaction outside of component scope?
for routing i’ve seen it done all the time, so yes?
hm okay, I guess I don't know what to do with (om/transact! this ... )
where "this" is not defined.
just pass it the reconciler directly?
yeah that’s what you are going to have to do, you aren’t in a component after all
Cool.
Thanks! 😄