Radek Pietruszewski
Radek Pietruszewski
> Other solution could be to add a static property static removePermanentlyByDefault = true when defining a new model. This way model behaviour doesn't depend on db configuration Hmm, that...
@diegolmello but in this instance, would you even want to remove descendants of removed objects in a batch? or do you just care about deleting in one batch the exact...
> the whole problem hm, what whole problem?
@sd1998 Absolutely!
@sd1998 yeah! take a look at this PR: https://github.com/Nozbe/WatermelonDB/pull/399 — Step 2 was implemented there. So the tests are already there, now Step 3 is just to make it faster....
> Can we expect this to be released in Q1/2020? Which part? - Synchronous adapters - already out, except for Android - _Really_ synchronous adapter - yep, working on this...
@kilbot Perhaps you're right and I should focus on that first. But the two things are not in conflict. Suspense works best if you data is prefetched. Otherwise you still...
> I didn't know anything about RxJS until I started using WatermelonDB ... but now I've started to like the operators and I've started incorporating it into other parts of...
@likern Hey, just use `synchronous` option on native and `useWebWorkers: false` on web to enable synchronous operation and avoid any flickering. No extra layer of state management required.
> What exactly does synchronous mean? It means that Query observation resolves synchronously, so as long as you build your UI on top of Query observation (with `withObservables` or using...