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

query inside an action

is it possible to call a query from inside an action

Should I use v.float64()?

On this page on VectorSearch it suggests using v.float64() for the embedding field, but it's not even mentioned here. I'm using zodToConvex() from convex/helpers and, therefore, don't have access to float64()....

Race condition error upon await ctx.auth.getUserIdentity();[revised post]

Business Use Case: This condition was encountered by a new joiner trying to create an account on clarity and trying to join a space. Observed Behavior: The initial code for the getById function I wrote is as follows:...
No description

Understand how Context works in test environment with Identity

Hi Everyone, I'm a bit confused about the context in my test. Here's what I'm trying to achieve: I want to check if a user can access a document created by another user. To do this:...

OTP Verification after login on Profile dashboard

We are using twillio and resend as SMS and Email services, on intial login we are verifying phone number by sending otp to the user, and google login without otp verification. Now we have built a Profile dashboard where a user can change the mobile number and email address, whenever user changes any of them I want to verify by otp. We've tried using the same TwilioOTP.sendVerificationRequest by passing the required params but its not accepting the ctx which we are trying to pass from a mutation function....

[Paginated Query] How to get the first elements in the "middle"

Context: Let's say we build a chat in a mobile app: it consists of a screen that displays messages vertically. In order to achieve this, it makes sense to have a paginated query where messages are ordered by _creationTime . Let's say a user is off for one week, have hundreds of missing messages, and open the chat. A common feature is to display the last seen message and then the new ones, and to scroll down until the most recent one. Problem: ...

Are we sure this is working?

https://github.com/get-convex/template-nextjs-convexauth-shadcn I've cloned, gone through the config steps and provided Resend, Github. For magic-link, After clicking link in email it opens sign in page in separate tab and not logged it. For Github, it complains: `Be careful! ...

Debounce calls to a mutation without doing so for the optimistic update

Say you have a text field in a Notion-like application (e.g. Fireview in screenshot) where we use optimistic updates to trigger global changes on every keystroke. In the component we use a mutation like this: ```ts const updatePage = useAuthMutation(...
No description

Next build error when ran in github action

Hello, I'm trying to create a CI workflow for my nextjs website. The problem is that I keep getting a build error from convex when running my build step. I don't have this error when I run bun run build locally though. ``` Error: No address provided to ConvexReactClient. If trying to deploy to production, make sure to follow all the instructions found at https://docs.convex.dev/production/hosting/...

Edit Panel displays previously selected document instead of current Selection

1. Choose a document, click “Edit,” and the correct document appears. 2. Close the edit panel without making any changes and unselect the document. 3. Select a second document, click “Edit,” but the first document is still displayed instead of the second one. This behavior can be confusing when navigating through the documents....
No description

[deprecated] Race condition error upon await ctx.auth.getUserIdentity();

I recently encountered a race condition issue when implementing the getById query in my application. The initial code I had written is as follows: ``` export const getById = query({ args: { id: v.id("spaces")...
No description

Debugging Clerk Webhook Issues: "session.ended" event not triggering with Convex integration

This is the project I'm currently working on and the one in question: https://github.com/LunnS2/Self-Care-App.git Currently, the "session.ended" event is not being sent or attempted, so even though I log out on the client side, "isOnline" in the Convex database stays set to true. Another event that is causing some issues is "session.created", it's not always successful. With that said, what steps can I take to debug webhook failures and ensure Clerk events fire as expected? Also, if there are any other issues or suboptimal uses of Convex that you spot in any of my files, please let me know! I want to learn about Convex best practices and ensure my app works as expected and efficiently....
No description

CustomFunctions, vitest and multiple query call in a query

Hi everyone, I'm struggling on a test. Vitest throw an error as below : ` ❯ Module.checkIfAuthorizedToCreateObject convex/validator.ts:9:15...

Full-text search across fields in different tables

I'm wondering what the easiest way is to do this? I assume I can just create a search index on a new table and use triggers to denormalize data, but maybe there's a better way...

Error: `headers` was called outside a request scope.

I recently switched devices and I wanted to continue working on my project. So I pulled all the code from github and ran convex dev. Everything seemed to be working find and even the env's got filled in as well. This project is currently running in production on vercel so I know it works. But when I try to run it I keep getting this error
Error: `headers` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context
Error: `headers` was called outside a request scope. Read more: https://nextjs.org/docs/messages/next-dynamic-api-wrong-context
...

Fuzzy search for function names in functions panel

Would be nice 🙂 I also always assume that it works like this and only remember after my fuzzy query fails.

custom functions and getAll helper

Hi everyone🙂 , I create two custom functions to handle my queries and mutations. Now, when I use the getAll helper as below I have some strange errors. Except that I can query or mutate everything with my customFunctions. Do you have any idea what is the problem ? Did I do something wrong with my custom Functions ?...

How to register rateLimiter component in convex-test?

Haven't been able to find anything on testing docs or component specific docs for testing these components. I'm aware that they must be registered by calling t.registerComponent(), with a string name(rateLimiter), schema(can't figure how to get this from the@convex-dev/rate-limiter package), and modules(no idea either). Any guidance would be appreciated 🙂

Testing `withIdentity` in `convex-test`

Hello! I've created a custom mutation for userMutation and a custom query for userQuery which use getAuthUserId to pass along the current userId and verify that a user is authenticated. I then use these custom mutations and queries whenever I want one of my Convex functions to run with authentication for the current user. I want to write tests for these queries and mutations, and I understand I can use t.withIdentity to mock a user account. How can I get the mock id from the withIdentity user? When I try accessing it, I get a typescript error that the mocked user's id doesn't exist on Id<"users">....

dbRules functions not being triggered

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