Convex Community

CC

Convex Community

Join the community to ask questions about Convex Community and get answers from other members.

Join

support-community

show-and-tell

general

self-hosted

announcements

Validator record types with literals as keys.

Is it possible to create convex validator types such as
type player = Record<"str" | "dex" | "int", number>
type player = Record<"str" | "dex" | "int", number>
There is a record type in convex but I'm running into schema validation issues when using literals as keys instead of strings....

getUserIdentity returning null on certain page but not on home page. Using Convex with Clerk.

Hello, I am using Clerk auth with Convex and am accessing Google Calendar events. On the home page, I have a Calendar component that executes a listCalendarEvents action in my google.ts backend file. This function calls getUserIdentity to retrieve the user_id and pass that into the getUserOauthAccessToken function to retrieve the access token. This Calendar component is wrapped in the Authenticated component as follows: ```...

Can't get my functions to fire from React native with Expo and Clerk

I don't have any type errors, I can see my functions on the dashboard, every before the mutation line works but fails can't get past this line, the function call does not work I don't see any errors, please help ```const handleDone = handleSubmit(async (data) => { // Create a new main budget if we haven't already if (!createdBudgetId) {...

✖ TypeError: fetch failed

Retrying request (attempt 6/6)... ✖ Error: Unable to run schema validation on https://giddy-hyena-745.convex.cloud ✖ TypeError: fetch failed Failed due to network error, retrying in 528.35ms... ⠸ Preparing Convex functions......

LLM Docs

Anyone know if there are llm friendly versions of the docs?

Too many reads in a single function execution (limit: 4096)

I am getting below error for the first function that I am sharing below, I could not find the reason since all functions inside the function use indices. Can someone help me spot the problem? Error: Too many reads in a single function execution (limit: 4096). Consider using smaller limits in your queries, paginating your queries, or using indexed queries with a selective index range expressions. ...

Granular RLS (e.g. oldDoc/newDoc)

Using 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

hey guys i need help i have issue i dont know why when i login with email it shw ervything fine but when i go convex data / users i dont see users created but when i send feedback msg it show in data just issue with users i have trired eveything and i failed

Convex Storage Triggers

Can Convex triggers be used for storage (i.e. run a function when a file is created)?

npx convex dev watching files not inside the convex/ directory

when using lingui macro in constant.ts file inside the project but not inside the convex directory, it still make npx convex dev got errors, because it is also watching the constant.ts file

Searching two columns

Trying to find a way to search by two columns, with pagination. withSearchIndex works, when we look for one column but I need to search inside 2 columns. Do I really need to pull the whole table, then filter the data? Have a search box, and it needs to pull from users table a result for their name and/or email....

Prod deploy mysteriously failing with 400 Bad Request: UnexpectedAuthHeaderFormat

I was able to successfully deploy my project on Vercel when I last changed it on 5 Mar 2025, but I made a frontend change today (no Convex changes) and the 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

I am running into a problem with Figma Oauth 2.0 callback which returns with ?code=&state= appended to the return URL. Now, the ?code part of it is getting consumed by ConvexAuth. I'd love some help on getting around it. I edited my middleware.ts to do the following: ```export default convexAuthNextjsMiddleware((request) => { const url = new URL(request.url)...

libuv assertion with Convex Auth and Node.js 23.10 on Windows

I'm following the Next.js quickstart with 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

Hi Everyone, i am interested in implementing push notifications in my web app. I wanna know if and how i can do this using Convex. Also, will it be better to implement this using React Native(I am not yet comfortable with Native)? I would appreciate any links, posts or advice on how to go about this . Thank You 🙏...

Convex Auth Cookie Token in Tanstack Start

I have a Next.js project with Convex and Convex Auth that stores token and refreshToken in cookies. I created a similar project in Tanstack Start with convex and it stores token and refreshToken in localStorage. I am not very familiar with auth and good practices. So is it OK to store token and refreshToken in localStorage. what are the benefits or drawbacks of localStorage tokens? Also is there any way to store token and refreshToken in cookies?...

Route Translation for SDK Autogeneration (kebab-case filenames to camelCase API)

Context: I'm using Convex on several small freelance projects and exploring its integration into larger projects within a corporate environment. The established TypeScript filename convention in this environment is kebab-case (e.g., my-functions.ts). Currently, the SDK autogeneration process creates API routes directly from these filenames, resulting in function access like api["my-functions"].functionFoo. Desired Behavior:...

Paginated indexed query with multiple index choices?

I'm querying a 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

In react what’s the best way to get a result from the convex backend, but not have it be reactive. I want to wait for the result but than I don’t care if it changes

Getting Authorization Code from redirect URI (using Convex Auth w/ Google Provider)

Hello! I am using Convex Auth and have followed the steps to configure the signIn, signOut and other library functions. Now, for my use case, I want to access the Google Calendar API, to which I need the Authorization Code, which I will ultimately use to get an access token. However, I'm having trouble 'intercepting' the redirect so I can extract the authorization code from it. As you see in the image attached, after the user gives consent, it redirects from the Google consent screen to the Convex redirect URI with a code as one of the parameters and then back to our frontend which is at localhost:5173 along with a different 8 digit code that Google doesn't support. How can I go about getting the code in the parameter of the redirect URI? Thank you!...
No description
Next