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.
...Convex dashboard timestamp milliseconds

Convex Auth Twitter Error
Clerk + Convex + RN: If using simulators, auth session is shared among devices
TS issue with query argument when calling query from the client
export const getManhwaPageData = query({
args: { manhwaId: v.id("manhwa") },
export const getManhwaPageData = query({
args: { manhwaId: v.id("manhwa") },
LocalDeploymentMismatch
can multiple workers safely update different rows in a table concurrently
Can't start a local deployment
Implementing push notifications with Convex using Firebase SDK
Password provider async callbacks
Dev deployment is a lot faster than a production one