Using observables as a return value for queryFn
However, it seems like it's only possible to return a promise, if you return an Observable, the query is interpreted to resolve an observable (synchronously).
Is that a mistake in the docs? Is that something that is planned on being supported in the future?
What I worry about is that by converting to promise, it is basically going to be impossible to cancel the request, if it becomes irrelevant shortly after sending. This is usually done automatically in angular http client because an unsubscribe to the observable will cancel the browser network request.
What is the recommended way to handle this in angular query?
