charlie
CCConvex Community
•Created by charlie on 12/16/2024 in #support-community
Convex Auth + Google + Custom Domain
5 replies
CCConvex Community
•Created by charlie on 7/17/2024 in #support-community
v.record
Hi Convex team,
Is there a release date for
v.record()
? I haven't upgraded Convex since 1.2.1 because I rely on a v.record()
type (that unfortunately my desktop app is also now relying on) but really need to upgrade.
Or, is there a way I can use the internal/unofficial version (https://github.com/get-convex/convex-backend/blob/main/npm-packages/convex/src/values/validator.ts#L128-L144) ?22 replies
CCConvex Community
•Created by charlie on 11/8/2023 in #support-community
Best practice for forwarding webhook errors to Sentry?
I noticed one of my webhooks (HTTP actions) is erroring out, but I didn't get any kind of notification about it -- I only noticed because the data looked wrong on the frontend. Is there a way for Convex to notify me when this happens? If not, what's the best way to hook up Sentry here? In order to use
@sentry/node
, it seems I'd have to switch to the Node.js runtime -- is that the best practice?14 replies
CCConvex Community
•Created by charlie on 11/8/2023 in #support-community
"Field '_bRK...' starts with an underscore, which is not allowed for nested fields"
Hey team, I'm getting this error in a webhook (my Convex HTTP action) which looks up a document from an external database to copy it into Convex.
The document in question has a field "events" which is a POJO mapping event IDs to events. One of the event IDs (generated by
nanoid
on the client side) apparently started with an underscore, which is causing Convex to reject the db.patch
in the mutation called by my HTTP action, causing the webhook to return a failure code (because of my try/catch) and enter an infinite retry loop.
However, "events" is typed in my schema as v.any()
, so why does it matter what its keys are? Is this intended behavior?3 replies
CCConvex Community
•Created by charlie on 9/27/2023 in #support-community
Is _creationTime monotonically increasing across transactions?
Is it possible for two rows in the same table, created in different transactions, to have the same
_creationTime
?
My assumption is that they cannot, because of ACID. But I wanted to check before I write code that relies on this!5 replies
CCConvex Community
•Created by charlie on 9/13/2023 in #support-community
Convex sync suddenly slow
Hi Convex team! I'm experiencing super slow queries, mutations and dashboard page loads as of ~10-15 mins ago. Is there an incident or am I possibly getting rate limited?
15 replies