Error after updateing auth running npx convex dev
Lets say there are a lot of apps...
Keeping the user logged in forever.
Can I setup an index with array list field
users
table, I'm adding a new key roles
which is an array. Is it possible to declare an index based on that field? If yes, how could I run a query using the .withIndex
api where the values of the field are in a list? If this is not possible, is there a pattern or workaround I could choose to "limit" queries upon the (very large) users
table, based on roles
?Circular dependencies in validators
Table
from convex helpers, and I want to define some enriched versions of these documents using a Convex validator in the same schema.ts
file such that I can pass it around to other validators and Convex functions. I'm running into circular dependency issues, however.
See the attached screenshot for the specific example. I can seemingly fix this by putting enrichment validators into a enrich.ts
file in each table folder, but is this really the only way? I would love to have both table validator and enriched validators and types in the same schema.ts
file....
while using pagination, I'm failing to sort the elements in the right order of creation
How to reduce bandwidth reads?

convex auth session across subdomains
Can't access Convex cloud hosted server

Passing down additional params during user signup using OAuth provider
await signIn("google")
? I'm aware of the afterUserCreatedOrUpdated
method but that callback won't receive the params passed from signIn. Additionally, is there a way of removing phone, phoneVerificationTime, isAnonymous, and image fields? These fields aren't relevant to my application.discussing the best approach to add notifications on tables in a chat app.
Security questions
When to throw an error?
enrich
a lot of our data by fetching related or referenced documents. Each ctx.db.get
can return null, but this would indicate a business-logic error: a video
should not have a channelId
which points to a null document. In such a case, we would probably want to entirely dismiss the request and not serve partial data (we keep track of error logs etc. using Axiom).
The most straightforward approach in the backend is to throw new Error
in all such cases, but that burdens the client with handling all error cases
...`tsc -b` fails because @convex/_generated references server side code
npm run build
it runs tsc -b
and gives the attached errors.
...Optimise Fetching data
Authoring Components
Storing generated audio file doesn't work in action. Same code works fine in HTTP action.
await request.blob()
will give you the correct input." error but I am sure that I pass blob.
```
try {
const ttsResponse = await openaiTTS(botText);
console.log('ttsResponse', ttsResponse.status, ttsResponse.statusText);...COPPA compliance?
Using pagination in convex vs something like TanStack Tables?