We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a feature request, to terminate a pending query for example =
`class Example extends Component { signal = axios.CancelToken.source();
componentWillUnmount() { this.signal.cancel('Api is being canceled'); }`
The text was updated successfully, but these errors were encountered:
Canceling file saves was recently added. We could reuse that here. Would you like to open a PR?
Sorry, something went wrong.
Support: query.cancel()
5023592
Closes: #997 Taken from Android API [cancel](http://parseplatform.org/Parse-SDK-Android/api/com/parse/ParseQuery.html#cancel--) Can be improved in the future.
Support query.cancel() (#1003)
728c43e
* Support: query.cancel() Closes: #997 Taken from Android API [cancel](http://parseplatform.org/Parse-SDK-Android/api/com/parse/ParseQuery.html#cancel--) Can be improved in the future. * fix tests * Add xmlhttprequest note * remove tests
Successfully merging a pull request may close this issue.
I have a feature request, to terminate a pending query for example =
`class Example extends Component {
signal = axios.CancelToken.source();
The text was updated successfully, but these errors were encountered: