Replies: 1 comment
-
@jamesgpearce Sorry to ping you like this, I noticed there was another discussion around a similar question that hasn’t had a reply yet. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi guys,
I’m using Tinybase for my Expo app, I'm using persistence through SQLite and synchronization with Cloudflare Durable Objects. Each authenticated client gets its own MergeableStore and is optionally synced over WebSocket.
What I want to achieve now is query all of the user information stored in the Durable Objects. Basically a “fetch everything” so I can list or aggregate user data. I've created an endpoint on the worker that basically listed the tables created on the durable's sql and got ["stores_tinybase_tables", "stores_tinybase_values"], but everything seems empty. (the synchronization and persistance is working fine, so i dont think it really is).
This is the important info. of my UsersStore.ts
Important info. of my cloudflare worker index.ts
Beta Was this translation helpful? Give feedback.
All reactions