Can't get my functions to fire from React native with Expo and Clerk
✖ TypeError: fetch failed
Too many reads in a single function execution (limit: 4096)
Granular RLS (e.g. oldDoc/newDoc)
rowLevelSecurity
from convex-helpers, is it possible to set up granular permissions based on e.g. the kind of modification being made? Similarly to how triggers have change.oldDoc
and change.newDoc
For example, if you have role = "user" | "admin"
on the users schema and write an RLS rule such that a user can only modify their own document - wouldn't a user be able to change their own role to admin? What's the best approach to granular RLS?...issue with creating users in covex connected with clerk
Convex Storage Triggers
npx convex dev watching files not inside the convex/ directory
Searching two columns
Prod deploy mysteriously failing with 400 Bad Request: UnexpectedAuthHeaderFormat
convex deploy
step is now failing with this error:
400 Bad Request: UnexpectedAuthHeaderFormat: Unexpected auth header format. If you are trying to use preview deployments, please generate a new key in the Convex dashboard.
400 Bad Request: UnexpectedAuthHeaderFormat: Unexpected auth header format. If you are trying to use preview deployments, please generate a new key in the Convex dashboard.
callback, 3rd party authentication, convexAuth
libuv assertion with Convex Auth and Node.js 23.10 on Windows
npm create convex@latest
. Everything was working, including npm run dev
, until I followed the Convex Auth setup instructions with npx @convex-dev/auth
. Now, npm run dev
always fails with:
```
D:\GitHub\mysterious_convex_things>node --version
v23.10.0...push notifications
Convex Auth Cookie Token in Tanstack Start
Route Translation for SDK Autogeneration (kebab-case filenames to camelCase API)
Paginated indexed query with multiple index choices?
contacts
table, and need to retrieve contacts by the region they're in. The table contains a region
field (an ID from the regions
table) and has an index on that field. When finding contacts matching a single region, both normal and paginated queries using this index are working fine.
Yesterday I learned that the app needs to support collecting contacts matching multiple regions. With my normal queries, modifying them to support this requirement was pretty easy. I just ran multiple queries in a loop—one matching each region ID—appending the results of each to an array of type Doc<"contacts">
, then returned that array.
The snag that I'm hitting is with the paginated query. I can't think of a way to alter it similarly so that its results contain contacts matching all passed region IDs. While I could skip the index and just filter manually, there will eventually be thousands of contacts in this table, so I'd like to find a more optimized solution if at all possible....Wait for a result
Getting Authorization Code from redirect URI (using Convex Auth w/ Google Provider)

[Compound indexes]: Query first field, then sort by _creationTime
_creationTime
is automatically added as the final index field to all indexes ?
Wouldn't it be possible to implement something like a q.all
that just aggregates/ignores a particular index field? For example:
```
// index definition...[convex-helpers]: useQueryWithStatus error: "could not find Convex client"
useQueryWithStatus
from my frontend causes this error for some reason:
Could not find Convex client!
useQuery must be used in the React component tree under
ConvexProvider. Did you forget it? See https://docs.convex.dev/quick-start#set-up-convex-in-your-react-app
I tried defining useQueryWithStatus
in a few different locations in my convex folder, all with the same result. Updated to latest convex-helpers
version.
...