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

Limit Domain

I’m using convex auth together with Google OAuth2 authentication. How do I limit users strictly to a single domain? I’ve been able to add hd=domain.com to the url, but want to make sure it’s limited before users are added....

npx convex dev doesnt download generated code from another repo

i have 2 separate repo that i plan use to share convex backend. One is working fine, the new one (expo project), even after successfully running npx convex dev doesnt seems to load the functions correctly.
No description

How to properly update many to many records with ents?

Do I need to update (add or remove) on both sides or one is enough for convex to figure out? I.e: ```ts await payLink.patch({ customers: { add: [customer._id] },...

How do I run `tsc --noEmit` for a convex project

I want to do the following 1. have source files that are not in the convex folder (since convex will report errors) 2. run the tsc --noEmit command that executes typechecks for the entire project...

How to update TipTap using prosemirror-sync via server

Do you have a guide on how to update using the prosemirror-sync extension on the server.

How can I avoid explicitly defining type in TypeScript for a internal call query handler?

I'm loving Convex <3, and I'd like to simplify my code. I have a query handler where I define a specific response type, but I want TypeScript to automatically infer the return type, instead of explicitly specifying something like GetMeResponse | null. Here’s an example of my current implementation: ```typescript...

sign in as user ?

with convex auth, how do i sign in as user. its for the usecase where admins need to debug what is happening to user's account....

How to cancel a mutation when network is down

Take the convex-tutorial (the chat app), run it, use your dev tools to make the app Offline, type a message in the app, and hit Enter. Nothing will happen until the app comes back online. Would there be a way to cancel the mutation after 30 seconds, so we can display an error message to the user, instead of leaving them hanging for a indefinite time? (Also, just letting you know: I notice a high CPU consumption during the whole time the app is offline.)...

No query type safety

Hello, I'm having trouble with why I'm not seeing proper type safety. In my code: ```tsx const objects = useQuery(api.schema.objects.getObjects);...
No description

Is this typically a bad practice? v.union(v.id("thisList"), v.id("thatList"))

I have two different types of lists that a user can select to take a singular action on (in my case, send emails). I have a list of contacts that is a "segment", or a user can select the entire "list". A list is different from a segment, but the same action can be taken on both for all practical purposes. I have my schema like this:...

sign in link and password sign up creates two separate users

I need help with this one. How do i merge the two sign up method so that it detects its the same email

Narrowing function return type

Hi, consider the toy example below: passing true as an argument causes the function to return a number while passing false causes it to return a boolean. The inferred return type is however always number | boolean regardless of what argument is passed. I guess this is just a quirk with TS not narrowing function signature based on arguments passed. Is it possible to achieve this however in an elegant way? 🙂 ```...

Generate same OTP code for demo account for app store reviewing purposes? (Convex Auth)

Can I make a certain account such as demo@gmail.com to have a same OTP code each time, so that reviewers on the app store reviewing our app can use the same OTP credentials?

Monorepo

I want to build an app and use Convex for both the mobile and web versions. I’m new to using monorepos and came across a monorepo template—does it work with the latest updates? Can I use it as is, or will it require significant updates?

Data center locations

I'm interested in using convex for an upcoming project, I am just curious: 1. Are there servers in my country (South Africa)? - If not, where is the closest data center? 2. Do I need to specify which data center to use? Or does convex do that automatically?...

two reactclient

I used convex-helpers ts-api-spec to export the api and found that there were only function definitions but no model schemas. How can I obtain the model schemas?

I want to put CODEOWNERS files in my /convex - but how?

Splitting the /convex folder into domains will be handy as the team is growing. Alread we have something like: /convex |--foobar |-- schema.ts ...