Gary Chiu
Gary Chiu
Still running into this issue when trying to run import a model with a `@lazy` decorator in a Node script. Also a monorepo setup. ``` /node_modules/@nozbe/watermelondb/decorators/lazy/index.js:16 configurable: configurable, ^ TypeError:...
For others coming across this issue, I was able to get a workaround by changing how I set up my `@lazy` methods: Instead of: ``` @lazy commenters = this.collections.get('users').query( Q.on('comments',...
Here's your code reformatted to make it easier for people to follow and help: ```javascript async function mySync() { try { await synchronize({ database, pullChanges: async ({ schemaVersion, lastPulledAt, migration...
Is there a reason you couldn't have used the automatic `created_at`? https://watermelondb.dev/docs/Advanced/CreateUpdateTracking
Yes it works in a managed Expo app. Source: my current app.
I'm running into a related issue where if I change my theme's colours (located in a `colors.js` that is imported into `tailwind.config.js`), I have to restart the metro bundler +...
Running into this issue :(. It happens VERY consistently for me, I'm unable to reload my apps (pressing `r` on the expo server or iOS simulator) without running into this...
Running into the same problem. It's a blocker for running Edge Function tests as well if I need to create a client and use data in a non-public schema. ```...
Happening for me as well
Yep, found this happening for me too. A common use-case would be trying to offset something by the height of some component, like the TabBar, header, etc. Setting a style...