Convex Community

CC

Convex Community

Join the Convex Discord! Explore Convex, the open-source reactive database for app developers.

Join

support-community

show-and-tell

general

self-hosted

announcements

Node version banner

I did but I assume the change hasnt propagated to all of the users?

hey guys, do you have plan to add rich

hey guys, do you have plan to add rich logs? maybe open telemetry, i'd like to see all logs from mutation/quiery in 1 trace without switiching between logs

im creating a b2c app and theres this

im creating a b2c app and theres this nagging feeling that I may be making the wrong decision picking convex due to potential cost. And I have limited options to fix said cost problems when they do come up. Large user counts, low revenue per individual user.

is there a convex component to send push

is there a convex component to send push notifs (using swift not expo)?

Preview deployments with CircleCI

is there a way to do convex preview deployments via circle ci?

maybe convex didn't create my user table

maybe convex didn't create my user table before? that doesn't really show me why my users record wasn't created for the first user created but the betterAuth one was

Is there a way to have different schema

Is there a way to have different schema namespaces/groups? For example, for auth tables, I would like to have those tables in a separate schema group called "auth", and my other tables in a namespace called "public", etc.

Convex Actions Limitations and Use Cases

This is correct, you generally don't want to call actions direct from your app. Look for "Architecture" > "Don't misuse actions" section in Zen of Convex: https://docs.convex.dev/understanding/zen

Why use Confect?

i am quiet confused how it makes the dx any better

I was doing some Convex shaneningans

I was doing some Convex shaneningans today, and it took me a second.... but, is there a way to pass the active organization from Clerk to Convex auth so I can access it from the context?

I'm working on integrating Resend into

I'm working on integrating Resend into Better Auth Component to send verification mail, reset, etc. But when creating the options for Better Auth, I end up with a GenericCtx and because Resend needs an GenericMutationCtx I can't pass it to it .

hi I just saw this. do you ever have

hi I just saw this. do you ever have problems with circular dependencies? or are you preventing imports from other table directories?

Hey guys, I have this index

Hey guys, I have this index
.index("userId", ["userId", "dueDate", "status", "isActive"])
.index("userId", ["userId", "dueDate", "status", "isActive"])
...

This was not the issue. I figured out

This was not the issue. I figured out what it was. I downloaded the convex auth repo and looked around for where the error is thrown. Turns out the account just didnt exist and the error being thrown for that was "Invalid Verifier"

I'm using convex agents component and I'

I'm using convex agents component and I'm worried about the access management. Threads accept userId parameters, queries and mutations don't seem to have any checks, I can retrieve any thread from any user using those queries. Am I missing something?

I’m using a Convex function with Node.js

I’m using a Convex function with Node.js runtime to generate signed urls for images stored on cloudflare. I know I can check if a user is authenticated, but I’d like to enforce more specific permissions. like instead of just checking authentication, I want to verify that the users _id exists in a chatroomMembers table before allowing them to request a signed url does convex allow this kind of authorization logic for api endpoints beyond checking a users auth state?...

let's talk about ids -- making a thread

let's talk about ids -- making a thread here

it was there on 1.26.1 as well

it was there on 1.26.1 as well

Is there a good way to manage filenaming

Is there a good way to manage filenaming in storage? I have 30 webp that I want to use for banner images for different genres. I want to drop them in the convex front end. Is there any way to name them uniquely or is resourceId the only way to manage or identify a storage item? Do I have to drop them all in one at a time and then write down the id and store that in a config? I don't even think I could drop them all in at once because there's no way to preview the image and see which is which. Am...