Simon Kunz

Results 23 comments of Simon Kunz

There is this: https://github.com/elmatou/vue-pouchdb-lite (didnt check the code) but its newer

Hey thanks for the PR. I think we only support the shorthand `db.remove(doc, [options], [callback])` at the moment where you pass a doc object instead of spread properties. This will...

Hey thanks for reporting this, we'll take a look asap

Hey, thanks for reporting this. We'll take a look shortly 👍

@appinteractive Can you post your query object since aggregate is always set to true at the moment, the aggregation should be there but maybe i'm missing something here.

Might be a bug, maybe @assemblethis can elaborate?

Probably the same problem as https://github.com/MDSLKTR/pouch-vue/issues/31. See here for a fix

I believe this should be a good example https://pouchdb.com/api.html#query_index ```` db.find({ selector: {name: {$eq: 'Mario'}} }).then(function (result) { // handle result }).catch(function (err) { console.log(err); }); ```` From the docs:...

I suspect it should work. So when you plug the Pouch Instance into Vue, you instead plug this ``` // client-side code var PouchDB = require('pouchdb'); PouchDB.adapter('worker', require('worker-pouch/client')); var worker...

Hey, thanks for the feedback! Those code snippets were initially just for reference on an internal project. I agree that there is a need for more context on the topic....