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

dbRules functions not being triggered

I have the following: ```ts export const dbRules: Rules<AuthQueryCtx | AuthMutationCtx, DataModel> = { firestoreEdits: { insert: async (ctx, edit) => {...

Can anyone access data with CONVEX_URL without authentication setup?

Hi, I have a newbie question. I just started a Node.js project following the "Node.js Quickstart" guide. When exposing a database query like this, without any authentication restrictions, does this mean anyone can access the data if they know the CONVEX_URL? `import { query } from "./_generated/server"; export const get = query({...

Run Python script in Action?

I want to run a Python script (takes an input and returns an output, involves network calls) when users click on a button. Can I do it with Actions? If not, what are some workarounds?

Next.js 15 Convex Auth unable to login with Google OAuth

Upgrading to the new auth/core resulted in the issue. In convex logs I see - /api/auth/callback/google error '(void 0) is not a function '...

Convex Paginated Query with TanStack React Query

Is there out of the box support for Convex paginated queries with React Query? Or do we need to handle it ourselves? ``` const { data, isPending, error } = useQuery( // convexQuery(api.functions.myQuery, { id: 123 }), convexPaginatedQuery(api.functions.myPaginatedQuery, { id: 123 }), // Something like this?...

How to retrieve files from the Storage in Convex

code: ```ts export const getPackageById = query({ args: { packageId: v.id("packageTable") }, // Validate that packageId is an ID from "packageTable"...

Any idea why `NEXT_PUBLIC_CONVEX_URL` is required in a vercel deployment of using convex auth?

this caused many hours of investigation and confusion. for some reason, upon deploying from vercel (preview & prod), NEXT_PUBLIC_CONVEX_URL was required ENV. there was an application server error due to it being missing. I assume triggered via convex-auth provider. During local development, this was never needed. My local .env did not include it. I did have NEXT_PUBLIC_CONVEX_CLOUD_URL which what was used when initializing the client auth via const convex = new ConvexReactClient(process.env.NEXT_PUBLIC_CONVEX_CLOUD_URL!); however, no reference to NEXT_PUBLIC_CONVEX_URL within the project....

String into ID !

That feels so simple and yet I can't manage to nail it on my code :/ Can anybody help? I have this ticketId value in a string and I just need to pass it as an argument in the correct format! What should I do?
No description

Has anybody solved implementing a trigger for _scheduled_functions changes?

I'm creating a job queue, in which I ctx.schedule jobs, and I'd like to update the resulting jobQueue record when it's complete (my jobQueue objects are different and used differently from the primitive _scheduled_functions). I've tried the convex-helpers/trigger, but it doesn't seem to fire on the _scheduled_functions tables, as I don't update it directly. ```...

Help needed: Integrate Launchdarkly with Convex Dev

I am following the tutorial here https://www.convex.dev/components/launchdarkly to setup Launchdarkly with Convex Dev. I am at the step of setting up integration on LaunchDarkly Dashboard. I have filled the fields "name, environment, webhook url, component API token". Then I save the configuration. When I click the configuration form again to validate the configuration, I am presented with an empty form. So I decide to fill it again. When I attempt to generate a new token (I closed the terminal and lost the previous one), I'm getting the error message "A token already exists. Delete the existing token from the tokens table to generate a new one"...

...authTables not showing in api client

Even though I added the ...authTables to the schema they are not showing in the api client but they are showing on the website ```ts import { defineSchema, defineTable } from "convex/server"; import { authTables } from "@convex-dev/auth/server"; import { v } from "convex/values";...

Not sure why this is throwing a "multiple paginated queries" error

``` export const getJobsCountWithQueueAndStatus = internalQuery({ args: { queue: v.string(), status: v.union(...

Docs feedback: CLERK_SECRET_KEY is not findable

This critical (edit: I'm not actually sure which scenarios it is required) environment variable, CLERK_SECRET_KEY, is not in plain text, so therefore not findable in documentation. It is burned into an image on https://docs.convex.dev/auth/clerk...

React quickstart breaks on `npm run dev:frontend`

I ran npm create convex@latest and then npm run dev but I'm getting an error. ``` % npm run dev:frontend ...

I just finished the tutorial and I have some questions

* Can Convex do local-first? Work offline and sync later? * Is it possible to run your own convex reactor? (Like github co-location) * Do companies need to worry about Convex having access to their data? * This is vendor lock-in, right? * What happens if you exceed the maximum quotas?...

Sign in flow not working on deployment on AWS Amplify

I am using the Clerk, Convex template and the sign in flow on the frontend works on my local deployment. However, it does not work on the deployment that we have on AWS Amplify. Is there a configuration that we are missing causing this issue? Here is a screenshot of the env variables configured within Amplify
No description

Getting current user id in mutation

Hi! I'm trying to post a comment related to defined item. I pass itemId as an argument but i want to use current user's id as a comment author. I've configured simple password login. I could see in database that fields i used in withIndex are equal but i couldnt pass identity.subject as is as it is not Id<users> field. thus query returns empty array. How to do this correctly? Should I use users collection instead of authAccounts? ...

convex-python client freezing when using set_auth

Hi Convex team! I've encoutered a strange error: convex client is freezing on query when the .set_auth(<token>) is used prior to the query. ...

How to handle metadata fetching in nextjs(14.2.14) + Convex

If for instance I want to have the some of the user's information as metadata, How do I go by doing this with convex? cause it works just in development for me.

Next.js 15 (Canary) - Issue with Convex Auth Context

I'm using Next.js 15 (canary version), and everything works fine most of the time. However, occasionally after a hard reload, the middleware indicates the user is authenticated, but mutations fail because the ctx.user is undefined. For example, inside a mutation: ... const userId = await getAuthUserId(ctx) ... returns undefined, This issue seems to resolve itself after a few refreshes....