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

implement optimistic updates for a paginated query

How can we implement optimistic updates for a paginated query? Does anyone have an example?

Convex Helpers error

I am getting this error while using Convex helper with Next.js 15.

fitness tracking

trying to integrate with https://www.polar.com/accesslink-api/?srsltid=AfmBOooE910RcxJdKHXs5u7sWjpegMxc8yZJQd_HckBMyFSvVUVLhxzP#polar-accesslink-api and eventually with Garmin as well wondering if this should integrate with Convex Auth...

Usage Stats API

Hi guys - is there an available API that displays usage stats in a front-end application. It would be nice to be able to fetch user data usage information, so that if I have limits (ie; per subscription plan) that the User could easily go view a dashboard where they could see their usage for the month. Similar to the Dashboard usage stats, but could be implemented specific to individual users.

convex auth on expo password provider error

i was just following along the guide on the docs and suddenly came across this error. can anyone help?
No description

Preview vercel mode error

Does anyone have issues running pull request deployment on vercel? I get this everytime, but when I merge the pull request, it works! ```...

Convex Helpers build errors

Hey happy new year all, I recently updated my convex-helpers npm package to the latest version (0.1.67), and have been working off of the convex sass starter repo. I seem to be getting the Type error when running yarn build: ```./node_modules/convex-helpers/index.ts:16:22...

Custom auth

Hi everyone, I am trying to understand how auth works in convex. I want to implement custom oauth and not use clerk or auth0. What I usually do is I have 2 endpoints per providers....

Convex Auth in production

Hi everyone, I’m deploying my Vite React app to Railway from a GitHub repo with Convex, and I’ve run into an issue. My build script works fine with:
"build": "tsc -b && vite build && npx convex deploy"...

object is not accepted undefined

I have an object in the convex parent Document database that accepts Id<"document"> | undefined, but when I put undefined nothing changes
No description

requestId access

Is there a way to gain access to the requestId in the context? I've dug through the convex-js code and it seems like something might be stubbed out, but I can't seem to figure how to get at it

Does Convex have recommended processes for securing secrets / a secret key management feature?

I'm a hobbyist starting a Convex projects. I haven't seen anything in the documentation that explicitly addresses how secrets should be managed in a Convex backend, although I do see an example "MY_SECRET" environment variable in the docs (https://docs.convex.dev/production/environment-variables) Are Environment Variables the recommended way to store sensitive secret values such as private keys? Are there ways to limit the scope of a secret to only be usable by certain actions / functions / etc? ---...

I recover functions file

I had this project locally but eventually lost but the convex backend is still there how can i recover it in a new project

Is Authenticated function required to integrate convex with clerk?

If so, it should be explicit and emphasized. Common mistakes in my team.

Facing difficulty in setting up Convex on Multiple Projects

I have currenty connected Convex database on my Frontend Nextjs project, Now I have created a new nextjs project for Backend (Admin Dashboard) where we gonna use queries & mutations exhaustively. Can anyone help setup this for us?...

Unable to push deployment config when using @react-pdf/renderer

Hi, I am using @react-pdf/renderer in one of my node actions but having issues in deployment. I have added convex.json file alongside package.json file as follows:...
No description

Dashboard - Act as a User Improvement

Can it be made to toggle the custom data and not reset the data every time you click it? I'm debugging something that requires me to toggle it with valid data....

is there a way to persist env vars of the same preview deployment?

im not sure if im doing sth wrongly, i find that every time i push updated code to the same preview deployment, the env vars are wiped out. is there a way to persist them?

Can't Prepare Convex functions

it keeps showing me this error for a lot of files , i am writing react . The esbuild loader for this file is currently set to "js" but it must be set to "jsx" to be able to parse JSX syntax. You can use "loader: { '.js': 'jsx' }" to do that....

Generic Query and Mutations

My issue is this: I repeat same or quite close things a lot eg. ``` import { useQuery } from 'convex/react'; import { api } from '../../../../convex/_generated/api'; ...