David Fahlander
David Fahlander
> > @dfahlander (2019): The plan is to release a new major (Dexie 4) at some time, with a lot of news. One is that the query engine will accept...
That could be done by using [Collection.limit()](https://github.com/dfahlander/Dexie.js/wiki/Collection.limit%28%29) or [Collection.until()](https://github.com/dfahlander/Dexie.js/wiki/Collection.until%28%29). ``` js const coll = myTable.where('key').equals('mykey') coll.limit(1).each(val => console.log('got first value', val)); ``` or ``` js coll.until(val => { console.log('got next...
That's a good idea. If typeof Symbol !== 'undefined' && typeof Symbol.asyncIterator === 'symbol') we could defined method [Symbol.asyncIterator]() on Collection.prototype. It could return the cursor that should implement the...
It could matter how the measurements are being made. It could also be that the writes are fast to add them to the "oplog" but the underlying database engine need...
I updated the todo-list sample to clarify this. Also needed an update of dexie-cloud-addon to make the rejected invites visible in db.cloud.invites observable. The invitee can do invite.accept() after having...
> Can you please give a hint when this branch will kick in: > > https://github.com/dexie/Dexie.js/blob/22a7b664f04dbaffc37145c0549a9d632124dff6/samples/dexie-cloud-todo-app/src/components/access-control/SharingForm.tsx#L154 Not sure if that code needs to be there. I just didn't have time...
It is only possible to make the list private again (not sharable) by someone with full permissions in the realm. When the owner of the list deletes all members but...
Please explain... :)
Thanks for the log printouts - seems as the problem is related a table with compound primary keys but the keys are not arrays as expected but plain strings. This...
This could be anything I suppose (out of scope for what Dexie.js can control) such as the user deleting the physical file while electron is opening it, or that the...