Erik Dalén
Erik Dalén
@pdamoc The problem is that `Task.map2` runs the tasks in sequence instead of in parallel: http://package.elm-lang.org/packages/elm-lang/core/latest/Task#map2 > Put the results of two tasks together. If either task fails, the whole...
@Hermanverschooten I'm not sure exactly what the Elm API for it would be, but you could have something similar to `Promise.all` in JavaScript to wait for all the tasks to...
A benefit of being able to parse the query yourself is that it is easier to modify it in the AST form before sending it to the server. For example...