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

Using Convex Triggers Across Multiple Frameworks: Jetpack Compose, SwiftUI, and Next.js

I'm working on a multi-framework project using Jetpack Compose (Kotlin) and SwiftUI (Swift) for the native apps, and Next.js (React) for the admin dashboard. I want to implement a Convex trigger that logs every insert on the user table to an activity tracker table. Since each framework has its own "convex" folder at the root, do I need to set up the trigger in all three folders, or can I define it once for the entire project? How should I structure the Convex backend for such use cases? Here are convex sample project repos for reference:...

convex auth.getUserIdentity() is inconsistent

In my nextjs app, I have upgraded convex-dev/auth to the latest version 0.0.71. I went through the documentation and correctly setup authentication including properly setting up the middleware. (also I use email provider with resend). Now in my app, after login, I navigate to route /partners. This route accesses the session user (in the backend) by calling contex.auth.getUserIdentity(). This first call works fine as it returns the logged in user object. But when I navigate to the subroute /partners/[id] and makes the same call, this time it returns an empty. If I go back to the previous screen and refresh the page, I'm able to get the user object just fine....

Problem with internalAction

I'm calling this like this: const updatedRows: string[][] = await ctx.scheduler.runAfter( 0, internal.files.handleBatchEnhance, {...

Nextjs server actions does not work with revalidatePath

Hi there! I'm struggling with basic data refreshing on a simple next14 app directory page.tsx. Basically this is all code taken from https://docs.convex.dev/client/react/nextjs/server-rendering#server-actions-and-route-handlers. /src/app/testpage ```...

Issue with convex auth

when using convex auth and I try signing up with password when the account exists already but the email and password I use in signing up matches the one existing it just signs them in and I don't think that is the right behaviour

Cancel Running Action

Hi folks, is there a way to cancel a long running action? It is not scheduled and I can't see anything in the dashboard UI to cancel it.

Convex’s use of server vs client caching

I’ve been searching for any blog post or docs that break this topic down more. I know convex will cache server function queries so all clients that call the same function query will get the cached response. But what about repetitive calls from the client? I’ve seen a little reference that convex does client caching in 1 post but zero other info about it that I can find so far. I’m trying to decide how to architect the query patterns for some dynamic data heavy pages. Specifically large custom spreadsheets that every column, row, and cell value can be changed (though not frequently) and shared between users, organizations, teams. So striking the right balance of how granular to make the query subscriptions is important. And how this will affect the function call quotas for convex matters even if they are generous....

File serving in a nextjs app via http action authenticated with clerk

After looking at the docs, this is the implementation I came with for serving my files securely via http action. Any feedback appreciated. /convex/http.ts ```typescript import { HonoWithConvex, HttpRouterWithHono } from "convex-helpers/server/hono";...

Re execute query with React when parameter change

Hi everyone, I use useQuery with react to execute my query but one query's parameter depends from a select tag, How can I reexecute my query when the selected value change. I'm pretty sure I saw something to do that on discord or stack.convex, I didn't retrieve it. Thank for your help...

How to query an array in filter or withIndex

I want to query an array of users by either filter or withindex, any assistance will be great. Example of schema - chat: defineTable({ isGroupChat: v.boolean(),...

npx convex dev Doesn´t do anything after setup

Hello there! Just aquickone. When I run the npx convex dev in the terminal it does it's thing for just 1 second and turns red. I don´t even know if it did anything at all.. but My app is not running and I get the other error in when I run the app locally. "Unhandled runtime error" ...
No description

Connection to database never establishes

Hi, I'm having issues connecting to my convex backend. It seems the websocket connection never succeeds. This was working fine yesterday. Can anyone tell what's happening? I've attached screenshots of the console. I'm following the otp auth flow with resend from the docs. I can add additional context if needed. Any assistance is much appreciated. Thanks!...
No description

Convex Auth with nuxt/js

Does anyone have any experience or knowledge how to install convex with database auth in nuxt.js? I have read through the docs and tried to come up with something myself but no succes so far.

auth/core and convex-dev/auth seem to have diverged in typing

I used to run convex-auth demo fine on "@auth/core": "^0.34.1", "@convex-dev/auth": "^0.0.61", Now I've tried again and under "@auth/core": "^0.37.0",...
No description

User Profile creation on signup

Hi, Currently when I signup, I am taking a bunch of information from the user, and some of the data is for user profile, and when i signup, i want to create user profile with the data and connect it to the user with id, is that possible?

React Native Quickstart Error

I'm following the docs to set up react-native with convex but running into this error: ``` ✘ [ERROR] Could not resolve "convex/server" ...

How to use Buffer in httpRouter?

Some npm packages I need rely on Buffer and I am already using "use node" for convexAuth ConvexCredentials that is working fine. But then I get the following error: ``` InvalidModules: Hit an error while pushing: Loading the pushed modules encountered the following...

TeamNotFound

I recently updated the team and project name in convex and now when I try to deploy, it's telling me the old slug name is not found. How can I get it to know that the team/slug was changed? Error fetching POST https://provision.convex.dev/api/deployment/authorize_preview 404 Not Found: TeamNotFound: No team found with slug: old-team-name: https://provision.convex.dev/api/deployment/authorize_preview...

What’s the best way to connect Convex DB to external services?

Hey everyone, new fan here! 🍻 I’m trying to dive into Convex and figure out how to integrate it with our current workflow. Using Convex on the client side is pretty straightforward, but I’m struggling to understand how to connect to the database from external services, like a task engine running on Cloudflare Workers. Do we need to expose our queries or mutations using httpAction and build another layer for type safety?...

Convex + Nextjs using preloadQuery inside layout.tsx

Hi, I am trying to understand if doing a preloadQuery inside a layout.tsx and share it amongst my "use client" pages through a "react context" has any advantages over using useQuery on each page (assuming the data hasn't changed). Or if it's an anti-pattern cause layout.tsx is loaded once and will not cause re-renders?...