@daniel.dyba I recommend you to try #fulcro, it makes the development in Om.next much much easier, working from om.next raw is kind insane if you just trying to get an app out
Did anybody encounter the error "No queries exist for component path"? What does it mean? To me it occurs when I do a mutation.
Also, my mutate function is beeing called twice.
@roti about the mutatoin, you probably forgor to put your function on :action
on the output
om.next calls the mutations once for the local, and one more for each remote (usually 1)
so you can't put the code strait on the mutation, you have to put on a :action key returned by it
eg: (defmethod mutate 'do-something [_ _ _] {:action (fn [] DO_THINGS_HERE)})