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

Type inference issue with newly added routes

All my previous routes work fine and are correctly typed. All of a sudden, things stopped. When I add a new function, type inference from react stpped working as expected. I placed the new function in an old queries.ts file that is properly typed, only the new function has this inference. Any idea what causes this?...
No description

How do i create a schema object with computed fields

using convex.dev and or convex-ents , how do i define a computed field. If i have an entity user defined in my schema with fields first name and last name, how do i define a fullname field that concats first and last name. This is just an example, it can be any computed field

Custom query with default argument

I want to write a custom query that adds a default argument. ```ts export const organizationAdminQuery = customQuery( query,...

Is there a way to share my functions and schemas across my project apart from a monorepo?

I'm creating an app that has mltiple interfaces but then I have to rewrite some convex functions in multiple places and I think there should be a better way to optimise this process. Probably like a pull command or something within the cli. I want to use a monorepo but the projects have been setup already and I don't know how to merge existing projects into a monorepo Thanks...

How can I run an action from a mutation function since they can't be http actions?

In a migration function which I've defined as either a mutation or an internalMutation, I need to run an action so I can run a fetch query. How can I run the action from a mutation or internalMutation so I can do ctx.runAction?

Getting Convex Auth to work with NextJS middleware

I want to integrate Convex auth with NextJS. I'm following the following docs: https://labs.convex.dev/auth/authz/nextjs It requires setting up a middleware using convexAuthNextjsMiddleware - but whenever I try to use it, I get the following error (attached image). ...

Convex Log Error "auth:store Invalid Refresh Token"

I have used the Convex Documentation & Tutorials / Code. Also use the Github Example Repository. It seems like it IS working on first page load and the Sign In. But somewhere in the Convex Backend code I lose the user. I have been stuck on this for 3 days. Looks like I have to go into the Convex Auth Package code to debug/fix - or I am missing something? Here are the related files, Convex Logs and Broswer Console Logs....
No description

Is runMutation transactional?

```ts await ctx.runMutation(internal.foo.create, { foo: "xyz" }); await ctx.runMutation(internal.bar.create, {...

React query disadvantages

Hi, I'm still unsure about using React Query in my project because I don't know if it works well with Convex yet. For example, if I use it, will I need to handle cache invalidation myself, or does Convex take care of that? I'm still a bit confused. What are the disadvantages of using React Query with Convex?

Migrating to Convex: how to deal with IDs?

If i'm migrating from another database (e.g. Firestore) to Convex, are there any recommendations on how to deal with the IDs as they're not valid in Convex? Should I just let Convex generate its own IDs and keep the old Firestore ID in a separate field in the document? But what about the relationships? I mean, I guess I won't be able to use the Convex IDs to reference other documents when initially importing the data....

Legend-State plugin for local-first

I'm investigating making a Legend-State plugin and can use some help with some things. The first thing is it ideally works the same way when given a ConvexClient from React or from vanilla JS. So the first thing I'm trying to set up is to use onUpdate when given either a ConvexClient or a ReactConvexClient. But it seems like they work very differently - in React it internally uses a ConvexReactClient.watchQuery whereas the script tag example uses ConvexClient.onUpdate. Looking through the source iIt looks like ConvexReactClient and ConvexClient share a BaseConvexClient base class, and I could use subscribe on there. But is that the best way to go? Seems like I'd miss out on some of the nice behavior from the higher level wrappers. I can do that to get an initial prototype working but I'd like to make sure it works in the correct Convex way....

I have one general doubt!

Storing the JWT token in local storage is unsafe due to XSS vulnerabilities, right? but Convex stores them in local storage?

Issue using auth with custom user schema

I have my auth set up with a custom user schema like so.. ```export default defineSchema({ ...authTables, users: defineTable({ name: v.string(),...
No description

Convex + Lucia auth + Svelte | Help

Hello i was able to integrate Lucia with convex (thanks to @v and his repo https://github.com/vynxc/lucia-svelte-convex-demo) Now I'm trying to write queries that filter by auth user id, to show only those rows the user owns. ```typescript...

How can I get the reason for login/signup failure with Convex auth?

Hi, is there currently a way to get the reason for login/signup failure (e.g., email not found or invalid password) on the client side with Convex auth? Or is this something that will be added in the future? Thank you. 🙏

Convex function Auth only

Is there a way to reject convex function calls without Auth token on a Middleware level? I'm hoping to mark a convex function as Auth required in the backend and reject any calls without. Or is the best way to do that to check getUserId === undefined on start of the handler?

Need a little react help

Hello family, its been a while. So for my site I wanted to save a simple count of users visited. I wrote this code: ```tsx "use client"; import { useMutation } from "convex/react";...

runAfter is not throwing an error on the client

Hello, can't understand why error is not throwing to the client. This is the pattern I'm trying to implement. I can see the Error 'Called getCurrentUser without authentication present' logged in convex, but I can't get it in the front end. I'm using Next.js. ...

Modify the dashboard interface.

In the future, will it be possible to add it to the interface in the dashboard. For example, adding a leaderboard page on the site. Of course, you can implement all this on your frontend, but you want the site to be clean without administrative access for ordinary people. example idea code ```ts <convex/dashboard.[ts,js,mjs]>...

How to assign types created with convex/values to function parameters?

I want to create a utility function but need to pass an argument that has type safety. How can I reuse the type from a convex/values into a normal function? Example...