om

Please ask the channel first, not @dnolen directly!
wilkerlucio 2017-12-01T10:32:55.000049Z

@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

3
roti 2017-12-01T15:34:38.000422Z

Did anybody encounter the error "No queries exist for component path"? What does it mean? To me it occurs when I do a mutation.

roti 2017-12-01T17:51:47.000572Z

Also, my mutate function is beeing called twice.

wilkerlucio 2017-12-01T18:43:25.000474Z

@roti about the mutatoin, you probably forgor to put your function on :action on the output

wilkerlucio 2017-12-01T18:43:44.000131Z

om.next calls the mutations once for the local, and one more for each remote (usually 1)

wilkerlucio 2017-12-01T18:44:03.000149Z

so you can't put the code strait on the mutation, you have to put on a :action key returned by it

wilkerlucio 2017-12-01T18:44:28.000053Z

eg: (defmethod mutate 'do-something [_ _ _] {:action (fn [] DO_THINGS_HERE)})