Convex Community

CC

Convex Community

Join the Convex Discord! Explore Convex, the fullstack TypeScript platform for developers and startup founders.

Join

support-community

show-and-tell

general

open-source

announcements

Filtering by nested field on Convex dashboard

Wondering if there's a roadmap for this?

punny code

(node:4970) [DEP0040] DeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead. (Use node --trace-deprecation ... to show where the warning was created) does everyone get this warning...

Deploy individual functions

I'm wondering if it's possible to do npx convex deploy --only functionName provided that the function works with the already deployed schema

Uncaught Error: Provider password is not configured

I'm getting this error when trying to sign up with the password provider via convex.

zod return validator in convex-helpers?

Are there any plans to add return validator in convex-helpers/server/zod?

Convex Auth Magic Link with Resend: Uncaught Error: Uncaught Error: Index users.email not found.

I'm trying to setup the new Convex Auth in with Magic Link my Nextjs app. I'm following the official tutorial and the demo app. When I call signIn("resend", formData), I'm getting the error: ```bash error Error: [CONVEX A(auth:signIn)] [Request ID: 09412de9cb7c47e3] Server Error Uncaught Error: Uncaught Error: Index users.email not found. at uniqueUserWithVerifiedEmail (../../../../node_modules/@convex-dev/auth/dist/server/implementation.js:881:43)...

Convex Auth... Authenticated works but auth.getUserId(ctx) returns null

Hi! Quick question (hopefully) my auth cycle is working, i can use ``` <Unauthenticated> ... </Unauthenticated>...

Convex Auth Apple

got github and google working in dev in prod. make sure using at least @convex-dev/auth@0.0.39 Now trying to get Apple working. It's super confusing, but with the help of this article https://medium.com/identity-beyond-borders/how-to-configure-sign-in-with-apple-77c61e336003, I believe I know have the right AUTH_APPLE_ID (client_id) and AUTH_APPLE_SECRET (client_secret) Now I get the following error...
No description

How do get userId to display on convex data table?

As title suggests, I am not sure why this is not showing up like it is for the guy in the other photo, I have follow his tutorial every step. here is the code for the file that i believe is using it. ```import { v } from "convex/values"; import { mutation } from "./_generated/server"; export const createThumbnail = mutation ({...
No description

How does the search bar in https://www.convex.dev/can-do work?

In https://www.convex.dev/can-do, I see that the search bar can find results from the title, headline, and body. Is this search bar using Convex full text search, duplicating the data into a separate table for the purpose of full text search, and concatenating the three properties into one string field? I'm considering building similar functionality. It's not necessary to actually specify how the can-do search bar works, but any general commentary on how to do this would be helpful....
No description

Error boundary template/example

I'm looking for an example of an app-wide error boundary that will show a custom page when a ConvexError is thrown in mutations or queries. Does anyone have a simple example of this?

how to use auth0 with nextjs app; auth0 is working but useAuthenticated still shows false;

how to use auth0 with nextjs app; auth0 is working but useAuthenticated still shows false; https://auth0.com/docs/quickstart/webapp/nextjs/01-login I followed this and then tried to setup convex auth with this doc https://docs.convex.dev/client/react/nextjs in client side...

Failed to install @convex-dev/convex-react-query

Hi, I'm trying to install @convex-dev/convex-react-query via npm to setup tanstack-query with convex by following the docs: https://docs.convex.dev/client/tanstack-query but it fails to find the package in the npm registry now how can I install the necessary adapter @convex-dev/convex-react-query if I want to use tanstack-react with convex? Please help Thanks!...
No description

Can Convex Auth be a OAuth 2 Provider for other apps?

If my Next.js app uses Convex Auth, can that app, in turn, become a OAuth 2 Provider for other apps? Seems like Convex Auth cannot, based on my research on Auth.js. As a reference, this is the use case I'm referring to if the app were to use Clerk: https://clerk.com/docs/advanced-usage/clerk-idp...

Convex Auth Error with Microsoft Entra

Hi Convex Community. When I try to sign in using Microsoft Entra, I keep hitting a roadblock with an HTTP action error. Has anyone else faced this issue or have any insights on how to resolve it?...
No description

ctx.db.get() Always returning a Doc<'users'> typed doc

I have multiple queries for multiple documents structured like so: ```js export default query({ args: {...

Convex Auth Prod

Have github and google convex auth working for react native app in DEV in PROD in prod I use the saem JWKS and JWT_PRIVATE_KEY as DEV...

Ratelimit Queries

I would like to ratelimit queries and action, not only mutations. Is it possible?