This looks really good, actually. Having used SQLite, I waited a long time for a good, functional, easily-debuggable DB for React Native.<p>Realm didn't cut it on the debugging part.
When SQLite is not available in the browser, can it fallback to using use an Adapter which just implements a (low performance) DB in memory or storage?<p>edit: link to Adapter docs <a href="https://github.com/Nozbe/WatermelonDB/blob/master/docs/Implementation/Adapters.md" rel="nofollow">https://github.com/Nozbe/WatermelonDB/blob/master/docs/Imple...</a>
Looks like an awesome abstraction layer!<p>I'm curious how this would handle syncing like Gun (<a href="https://gun.eco/" rel="nofollow">https://gun.eco/</a>), and an example of how it might work with Vue.
can I use this in conjunction with graphQL and middleware such as apollo client? so essentially, use the middleware to query my DB and use watermelon for local storage?