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

resend not working in internalMutation

I had a problem where I wasn't able to send emails with Resend. My API key was configured, my resend domain was verified and magic link email were working fine (after setting the from param). But when I tried to send emails at runtime resend.emails.send() would give the error ...

Disabling query with TanStack Query

I am fetching data using convex query with TanStack query in my React project. I want to disable running query by condition. Here is the code. ```const { data: fileUrl } = useQuery({ ...convexQuery(api.tables.files.getFileUrl, {...

Using gemini with openai library working in action but not http action

I followed this guide to integrate ai streaming in my convex app. But instead of using openai, I want to use gemini because of their larger context window (1M tokens for gemini-1.5-flash). I get a bad request answer just using the basic example from google docs here. However, the exact same code works in actions which I assume it is due to the fact that http action cannot run node packages? What I don't get is why it is supposed to work with openAI (cannot try as I am not located in a country where opeanai is available) but it doesn't work for gemini. But still works in actions. Any idea if there is a way to make it work? Here is the code as an example (gemini api key created via google ai studio): ```typescript const openai = new OpenAI({...

How to add a dynamic route to the httpRouter

I am trying to create an endpoint in the form /package/{packageId} and this should return all the details for that specific package. How to create such a route to the Http router in convex?

issue with verifying password

i tried to look at the docs and source code of the password provider and tried this action to validate the password but i am getting an error: Uncaught ReferenceError: crypto is not defined
No description

Choosing a React Framework

Is their a guide or advice for choosing a React Framework I’ve been listening to the podcast which seems very opinionated about front end approaches and keeping it simple. However I’m new to React and it’s difficult to know the pluses and minuses of different frameworks...

Default values in table field

I have a table with a v.object field. In the future this object might get more values set in it. Is there a way to updated the existing data in the database with default values?

Hey i a not able to use my url call back in convex

when i use my convex url i am able to use github and google oauth but redirecting me to local host instead when i add my domain it is not able to login through google and github.

help me setup a cronjob that loops through my entire user table and updates a number

currently the following code errors out because i have more than 4096 user rows ``` export const replenishPointsForAllUsers = internalMutation({ args: {},...

Python

i have talked to several companies that are using fullstack javascript/typescript plus a data processing pipeline that uses python Of course, we should use convex for the typescript backend but what is the simplest recomendations for the rest...

"Database bandwidth" Discrepancy

Hi, I'm seeing a big discrepancy between the "database bandwidth" value displayed in: 1. The top table on the usage page (500.6 MB) 2. The aggregate "database bandwidth" of all my functions (8.47 MB) Both values are showing the usage only for today 18th Nov. I'm struggling to debug what led to the sharp increase in database bandwidth read, since the high database bandwidth is not showing up on the "per function breakdown" section. Could I get some help to understand this discrepancy? ...
No description

Cannot access the "page" return type for pagination

I am working with the pagination function provided by convex and I was trying to make a messaging feature for the application I am working on but I cannot access the "page" return type for my application. I get the toString and toLocaleString options instead. How can i make it work?...
No description

Dev to prod table export/import

Hi, My goal is to create deployment version and port all of the data from dev tables to prod. I have done the following to
- npx convex deploy to create deployment branch in convex - exported backup as ZIP from dev branch...

Does Vercel charge bandwidth for Convex images?

My team’s building a messaging aspect to our Next.js app and this question came up: We’re pretty confident that Vercel bandwidth is charged for images in the /next directory. These are images distributed throughout the Vercel CDN. But do images in convex (file storage) get charged for Vercel bandwidth when displayed on the front end?...

Hosting in EU

Are the re any options to currently (or as a roadmap feature planned) enable data residency i.e. hosting inside a specific region i.e. EU?

Creating a new authAccount not with signIn of useAuthActions

Hey, I’m building a site with Nextjs and using convex. I want the admin of the site to be able to create the users (doesn’t matter the provider but either password, otp or resend). I managed to add new user but not in the authAccount table which is what I need for them to login by themselves after the admin of the site adds them. Thank you!...

GetUserIdentity null

Hi there, I have a list of queries that run for it's corresponding page in my nextjs 14 web app. Inside each query I have a getUser hook that will check the identity and return the user associated with it: ``` import { QueryCtx } from "@/convex/_generated/server"; ...

NextJS 15 Dynamic API Async Errors

Hello, I'm currently receiving this error when trying to use NextJS15 with Convex and Convex Auth [Error: Route "/signin" used headers().get('Host'). headers() should be awaited before using its value. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis]...