marnec
CCConvex Community
•Created by Achilleas on 2/27/2025 in #support-community
Store dates
Maybe this section of the docs can help you
https://docs.convex.dev/database/types#working-with-dates-and-times
3 replies
CCConvex Community
•Created by David Alonso on 9/22/2024 in #support-community
Setting `_id` when creating documents with optimistic update
that is very nice news
11 replies
CCConvex Community
•Created by Deragon on 2/27/2025 in #support-community
Convex useQuery Not Updating in Real-Time
I never used Nextjs, but I think that if you are in a server component your should use
preloadQuery
, in a client component you should use usePreloadQuery
see here for more https://docs.convex.dev/client/react/nextjs/server-rendering5 replies
CCConvex Community
•Created by abldxtr001 on 1/3/2025 in #support-community
implement optimistic updates for a paginated query
I quote abldxtr001, an example would be interesting. In particular I'd be interested in how to achieve that without flash of content
12 replies
CCConvex Community
•Created by Sara on 12/22/2024 in #support-community
Feature Request: return the number the page is on in `.paginate()`
To compute the total pages number you need two pieces of information:
* the number of elements in a page (easy)
* the total number of elements in the collection (hard)
The reason why convex doesn't have a
total_pages
is that it would need the total number of elements and Convex is currently missing a count()
feature.
Usually the solution suggested in the community to efficiently count the number of elements in a collection is to denormalize the count and keep it somewhere in a document.
This means that you need to manually update the counter, the optimisitic lock strategy used in Convex should keep us safe from race conditions, but it is a lot of work.5 replies
CCConvex Community
•Created by volks on 2/26/2025 in #general
Hey! Evaluating Convex for our usecase,
very interested in this topic
4 replies
CCConvex Community
•Created by David Alonso on 9/22/2024 in #support-community
Setting `_id` when creating documents with optimistic update
Do you have any updates on this?
Having id generated on client side would also help with flash of content in React, that might sometimes happen when using the
_id
as key
attribute of dynamically generated components. Having a consistent key
would help avoid remounting / rerendering.11 replies
CCConvex Community
•Created by Jolo on 8/28/2024 in #support-community
Has anyone an idea how to avoid this Flash when checking if `Authenticated` or `Unauthenticated`?
I can't be sure about this but by reading the current implementation of
<Unauthenticated>
I'd say that this is fixed
As you can see the component returns null if it isLoading
2 replies
CCConvex Community
•Created by marnec on 2/25/2025 in #support-community
slow queries (using indexes)

7 replies
CCConvex Community
•Created by marnec on 2/22/2025 in #support-community
runafter vs wrapper-action
thanks
5 replies
CCConvex Community
•Created by marnec on 11/20/2024 in #support-community
resend not working in internalMutation
😳 thanks !! I really missed the fact the mutations cannot call 3rd party APIs.
9 replies
CCConvex Community
•Created by siingers on 8/15/2024 in #support-community
sveltekit & authentication
I see that this thread is marked as resolved but I really don't feel it is. I'm still at a loss on how I should authenticate when using svelte. I'd prefer to use convex-auth but there isn't a svelte version just react. The docs don't state that convex auth only work for react and that other frameworks should rely on clerk or something else. What's the official take on this?
135 replies