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

Can't apply multiple bounds (filters) on an index

For the table I'm filtering, I don't know how many results I will get back. I don't want to use collect (in case it crashes) and if I use take, their is a chance all the data returned will be filtered out and the user won't see anything. I thought I'd add all the filter options into the index, but get an error. ```javascript...

Is crypto.subtle.encrypt() supported?

I'm trying to encrypt data within a mutation. From the docs and discord conversations I understand that crypto.subtle is partially supported. However when I attempt to use the following code I get this error message: Not implemented: encrypt for SubtleCrypto. Consider calling an action defined in Node.js instead (https://docs.convex.dev/functions/actions). Here's the code:...

Supported in China?

Does Convex work within China's Great Firewall? I'm currently using Firebase for one of my apps and that's a no-go due to their restrictions on Google. Is there any reports of whether apps built with Convex work without a VPN there and if not, are there workarounds to support this? I know more raw solutions using a traditional API architecture we could easily find a solution, but the unique way that Convex approaches things seem like it might not be. We would really love to adopt Convex for our upcoming project but being able to support users in China is a big priority....

User document is deleted when I try to reset password

So I tried implementing reset password, I used the instructions in the doc. So I started by setting up resend and setting up my auth.ts. `import { convexAuth } from "@convex-dev/auth/server"; import { Password } from "@convex-dev/auth/providers/Password"; import { internal } from "./_generated/api";...

ts-api-spec does not type return types when using zQuery and zMutation

I am using zod wrappers for query and mutation, even after specifying the output as zod schema, the ts-api-spec types them as any

Sign in & sign up work on cloud dev, error on production

Hello all, I've deployed my app via Vercel, and followed the set-up guy carefully using differerent env vars for dev and prod. I'm using Convex Auth. My sign up and sign in flow seems to work perfectly when running on cloud dev. But on production, I'm getting the following errors: ...

Developing against a preview deployment

I set up the preview deploy key on vercel, and even tried from the command line, but the new preview branch is not being created, it just asks for prod and dev, so I answer no. npx convex deploy --preview-create staging CONVEX_DEPLOY_KEY=your_preview_deploy_key npx convex deploy --preview-create staging ...

Self Hosted Auth

I seem to have hit a bit of an issue in my self hosted attempts. I have setup a docker based self hosted convex app with a nextjs app running. I followed the instructions to setup the convex auth through the manual setup steps and have configured my google provider accordingly. However, when I click on the button that calls the signin function, the call immediately fails because it tries to reach my nextjs /api/auth endpoint instead of the convex http action /api/auth endpoint. Any thoughts?

I'm not sure how to integrate AI with my convex app

This is more of a need for advice or guidance I've built my application (react-native and next) with a convex backend. Now I would like to offer my stakeholders an AI chat interface where they can query the application data with natural language. For example a query could: "Give me the average amount spent by users in the last 4 months". ...

What is up with "use node" fetch?

I keep getting this dumb response when I try using the tiktok api from a convex use node action. When I use reqbin with the identical request it goes through perfectly fine ```js const upload = await (await fetch("https://open.tiktokapis.com/v2/post/publish/video/init/", { method:"POST", headers: {...
Tiktok response when rendered

Dev and Build workflow

Hello everyone, I was wondering what exact parts of my convex folder should I upload to my Github repo(should I just upload the _generated folder or everything else as well)? And should my build process(specifically EAS Build) be receiving the entire convex folder as well?

How to print tablename from generic type?

I'm trying to write a getDocOrThrow helper along the lines of whats shown in the screenshot. I would like to also be able to pass an _id for data correction purposes. I would also need to print the table of the referencing document, otehrwise it's too hard to track down from _id on its own . Can this be done? .__tableName doesn't work, it just resolves to undefined. Can't I somehow print the tablename from my generic type R?...
No description

Functions not showing up on Functions Explorer on Convex Dashboard and causing crashes

Hi! There are some functions that I have added to the convex folder, and they do seem to work (being able to write to the db), but I cannot see them on Functions Explorer tab on the Convex Dashboard. Should I be worried about this? Are the functions being recognized? Sometimes the functions that do not show up do fail, and this leads to a crash

Query Pre-processing for JSON Schema Storage

I'm working on an app in which I need to store JSON Schemas: ```ts interface JsonSchema { title?: string;...

shouldLinkViaEmail not working as intended

is have set shouldLinkViaEmail to false, but still the sign up accounts are linked by email. here is the code: ```ts const account = await createAccount<DataModel>(ctx, { provider, account: { id: email, secret },...

adding convex mcp to windsurf with pnpm?

pnpm dlx -y convex@latest mcp start
This error happened while installing a direct dependency of /Users/jakubdonovan/Library/pnpm/store/v3/tmp/dlx-38333...

Project Not Loading

I have created a project through TempoLabs by using 'npx convex dev' command, which worked to create a orject. but I could not access the project, it's just spinning and spinning. I tried various browsers, incognito etc - nothing works. just keeps spinning. what could be wrong and how to fix this? I have tried VPN option, switching off ad blockers etc. nothing works 😦...
No description

api.d.ts sorted differently on Windows?

One of our developers uses Windows, and we are having a lot of merge conflicts with api.d.ts It seems like Windows sorts Capital LetTers differently than Mac or Linux. Is that something the generator could accomodate for?...

React & Query/bandwidth optimization

Just hoping for some clarification on what the best practice would be for what I want to achieve and get a bit more understanding of exactly how the subscriptions work and how to avoid re-reading data off the database too often. I have a pretty simple table structure of: - Category - Topic (contains an id field for the category it belongs to)...