0xwess's Thread
If if have a useQuery on component, and the same useQuery on its child component, is it wasting resources, or is it smart enough to handle this for me?
starlord_gf's Thread
Hello, I have strange problem that when new item is added to the list while user is subscribed to this list via paginated query i get this error
but strange thing its happening only in convex production environement but on not in dev environment. Any idea what could be the reason?...
Uncaught ConvexError: InvalidCursor: Tried to run a query starting from a cursor, but it looks like this cursor is from a different query.
Uncaught ConvexError: InvalidCursor: Tried to run a query starting from a cursor, but it looks like this cursor is from a different query.
fiv3dollar's Thread
Happy Holidays all. I happened to notice today... has Replit built their system on top of convex? I saw the Secrets Moal in the docs and I was like I KNOW THAT MODAL.
knajjars's Thread
Please upvote Fastmind on Uneed if you have the chance. Proudly built with Convex ❤️
https://www.uneed.best/tool/fastmind?full=true...
makrdev's Thread
I created triggers to cascade delete operations for relational tables. (when user is deleted it cascades to relation tables.) It fails when we have too many documents. How can I handle this situation?
n1bab's Thread
im not sure if i should go to the support channel with this (please send me there if so) but im trying to understand more about the latency associated with httpactions specifically. mutations/queries are always under 250ms for me, but somehow httpActions themselves can take up to 3.5secs (for the same call).
ie:
Dec 24, 06:42:17 H POST https://rapid-egret-XXXX.convex.site/createRelationships 200 3.5s
Dec 24, 06:42:17 M relationships:insert success 250ms...
n1bab's Thread
hey! first of all, congratulations on building an absolutely killer product!! im blown away at how easy it is to build real-time functionality. i dont even have to think about it!
waynesutton_cx's Thread
🎉 Thank you all for being such an incredible part of the Convex community this year. We hope everyone has a wonderful holiday season.
As the end of the year holidays are ahead, just a quick reminder: if you need help or have any questions, the #support-community channel is here for you.
Here’s to another awesome year together in 2025 🚀....
clevertagline's Thread
Just a heads up, the latest announcement email became unreadable on iOS Gmail app in dark mode after the first couple of paragraphs.

starlord_gf's Thread
hey i am using vite pwa plugin and after last convex npm update i get this error on vercel build. anyone knows how to fix?
...
error during build:
[vite-plugin-pwa:build] node_modules/convex/dist/esm/browser/sync/authentication_manager.js (5:7): "default" is not exported by "node_modules/jwt-decode/build/esm/index.js", imported by "node_modules/convex/dist/esm/browser/sync/authentication_manager.js".
error during build:
[vite-plugin-pwa:build] node_modules/convex/dist/esm/browser/sync/authentication_manager.js (5:7): "default" is not exported by "node_modules/jwt-decode/build/esm/index.js", imported by "node_modules/convex/dist/esm/browser/sync/authentication_manager.js".
delt_'s Thread
I haven't been able to find much about server location. Where is the server located for the convex DB? Is it distributed to multiple locations globally, or is it a single location (if so, how can i select the location)?
jamwt's Thread
A lot of you are using Bolt with Convex recently, as are we. It seems like very recently, Bolt has started to sometime refuse to generate Convex projects and insists on using Supabase. Obivously our community cares a lot about Bolt continuing to be willing to work with this Convex. If you're on X and can send a like/repost/comment of support, please do: https://x.com/jamesacowling/status/1870950211222413620
barisonerb's Thread
Hi everyone, I have a feature request. Could you add a getTempUrl function to the storage system, similar to the getUrl function, where we can define an expiry time?
For example:
await ctx.storage.getTempUrl("storageId", 900);
and each time a storage ID is requested, it should return a different URL.
This would be an incredibly useful feature for everyone....xpriori's Thread
I'm in a lookout for an example of query + filter function. I can't seem to nail it. I'm currently collecting all my users then run a filter by email on the client. 😂
benanna19's Thread
Just a potential hiccup that others might have when setting up auth with Clerk. Clerk's UI is very nice but the pop up to save creating a template sometimes goes unnoticed so it's also possible that people (like myself) might run into the issue where they are logging in with clerk but the useConvexAuth hook is returning
isAuthenticated: false
resulting in confusion. Just needed to make sure to save the JWT Template but didn't really see the button to do so the first time around.i.sona's Thread
how do i combine map with afilter or getX(index) . something like
```
const team = ctx
.table('teams')
.get(ctx.viewerX().teamId)...