Nested optional search field type error
Return value validation question?
myValidator
exported from a validators.ts
file that i can use like returns: v.array(videoValidator)
But that ends up erroring, since what im returning is the result of a .collect()
so basically what ends up coming through is system fields aswell.....order vs manual sorting using _creationTime
Slow deployments during dev
Does convex support database triggers?
Blew over file bandwidth free limit and am confused as how to handle it
import.meta in Convex
import.meta
Running multiple projects in convex backend
Q: Marking a Path as External
convexAuth id of the current user on the client?
Weekly and Monthly Cron Jobs
Stopping infinite pagination
What token to pass when doing fetchQuery on the client
.ts
file marked as "use client"), I can't get a token from getAuthToken (for server auth) and getUserIdentity returns null...
Any ideas?...vector search stopped working
filter
property.Custom functions <> return validators
Rate Limiting Options
Convex queries running on Clerk sign up page causing uncaught errors
Convex Auth: Implementation with Svelte(Kit)
Record counts for large numbers of records is non-trivial
Difference between union of true & false vs boolean validators?
ValueToValidator
type which converts a Convex Value
into its corresponding Convex Validator
. It was quite tricky to write, but it's now almost entirely functional, save one small inconsistency.
```ts
type Boolean = ValueToValidator<boolean>
// ✅ VBoolean<boolean, "required">...