Is there some way to cancel a query I'm running in BreeseJS. I don't really care if the query runs server side, but it would be nice if I could just call a method or something to make sure that it doesn't call the method I have assigned to the promise using then. So let's say that my code looks something like
var promise = manager.executeQuery(myFavouriteQuery);
promise.then(myFavouriteFunction);
Is there something I can do with the promise later so that it won't call the function I gave it in then.