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

Convex Auth workflow

I'm converting from Remix/ReactRouter7 and Supabase to TanStack Start and Convex. I have this working in the other app and I'm having trouble knowing what to put where in "TanVex" or "ConStack" 🙂 Step 1 - User puts their email in a form for a Magic Link auth (which I have working on its own), and clicks the button. Step 2 - I need convex to take the submitted email address, query my "people" table and check if (a) the email exists/is connected to a user and (b) the "can_login" boolean for the user is set to true. Here is how I'm capturing the email address and sending it to the query:...

Is it possible to listen for subscribe/unsubscribe events for queries and trigger an action?

For example, for a convex query like api.messages.list, I want to be able to query the users who are listening to it at that time. I can update the lastOnline value for each user periodically and track it with this, but this will cause an absurd number of function calls. Since the client connects to the backend via websocket, this information is actually available in the backend. But I couldn't find how to access it and trigger an action in case of disconnect.

Type Mismatch in Update Mutation with Optional Fields

I’m running into a type mismatch issue when updating an account using a mutation. Simplified version of my setup: schema.ts ```ts export const account = v.object({ name: v.string(),...

DELETE_MISSING_KEY error on aggregate.trigger() on trigger (convex helper)

im trying to create a count aggregations on an existing table. i manage to run the migration as per below ```ts export const backfillAggregatesMigration = migrations.define({...
No description

Uncaught ConvexError: InvalidCursor: Tried to run a query starting from a cursor, but it looks like

Im working on aggregation backfill and i ran it on the first time and it works, but on the 2nd run after i updated the aggregate code (keys & sort keys). I ran into this error.
No description

ConvexAuth - Nextjs - Reset OTP - Password reset

why do I have on my dev server thos log of convex regarding my reset otp and password reset ? Each action on my app I got those logs
No description

Apply generated document id to a non-system field in schema

Hey all! I'm evaluating convex along with a few other services. The promises of convex are very exciting and what drew my attention to it. But I'm getting hung up on the inability to control document schema completely. Here's what I'm trying to do: ```tags: defineTable({ id: v.id("tags"),...

How do I navigate to a foreign key's document?

Seems inconvenient now to click a foreign key and navigate to its parent table. I used to be able to see an arrow in the top right corner. Then that got replaced with a hotkey, like shift + G. Now that hotkey is gone and I don't see an option at all in the selection menu....
No description

Should I avoid this ent query?

This is an example from ents docs: ```ts export const listTeamInvites = query({ args: { teamId: v.id("teams") },...

Using actions in queries and mutations

What is best practice for calling actions that "use node" inside of queries - e.g. fetching data from 3rd party nodejs clients and using that data in return from a convex query? Seems can only call actions using scheduler, but then how can 3rd party data be used in queries / mutations directly?

Error: Convex functions should not be imported in the browser.

My convex server looks like this: ``` 'use node'; import { v } from 'convex/values'; import { action } from '../../_generated/server';...

How to catch too many bytes read in a single function execution error ?

i have a query function that performs multiple queries below. ``` export const queryfunction = query({ ...

Not authenticated after successful sign in request

i dont know the reason for this but sometimes i have a problem that after page reload two problems happen 1. while user having JWT token set auth returns authenticated = false and loading = false. my app tries to sign in because of this 2. sign is successful like you see in the debug log. but auth is not set to true. this happens from time to time but not always. reloading page again fixes it and JWT token is used again...
No description

Problem when login

so when i try to login convex from terminal it always waiting, the site says done but in terminal still waiting
No description

"getManyViaOrThrow" Convex Helper Function Expects 6 Arguments

Relevant Schema: ```ts users: defineTable({ name: v.optional(v.string()), image: v.optional(v.string()),...

Switching convex profiles

how can i disconnect from one convex profile and connect to another one via terminal

skip - works in dev not prod

It feels simple, but I can seem to solve it. I use skip if the userId isn’t defined. Works in dev, errors in prod - seems to be calling the function even thought skip is defined. Simplified it down to: const user = useQuery(api.users.getUser, “skip”); ...

Dumb question: how do I make it stop looking for the sample data?

I installed the convex and tanstack start template. New to both. Every time I npm run dev I see a warning that it can't find the sample.json file which I did delete. How do I make convex stop looking for that?

Crazy high bandwidth usage

Hi All I'm having a real problem keeping under the bandwidth limits. I have a tiny amount of data that is being pulled to produce some dashboard analytics and charts etc. My understanding was that Convex handled the caching and so i didn't expect the usage to be what it is. ...