0

I am using pouchdb in my react application. I have a find query and i want to abort the query if another find query is sent before I get a result to the previous query.(for live querying).

Something like the db.killOp() of MongoDb

Anyone can help me with this?

Thanks in Advance!

Forum
  • 13
  • 6

1 Answers1

0

No, this is not possible. The only PouchDB operations that can be cancelled are a replication or the changes feed.

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189