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

useQuery different return types

Hello, I'm fetching data with useQuery and for some reason it has two different return types. In one component it returns an object with the data, error, etc properties while in the other it only returns the data. returns entry type | null | undefined ```ts const entry = useQuery(api.functions.anime_entries.authSingleById, {...

How to preload data with Remix?

I understand in nextjs you can preload data with preloadQuery, but in remix it terminate the server, I also need to send the logged in user to convex, im using convex auth. Error: Environment variable NEXT_PUBLIC_CONVEX_URL is not set. I tried to add this env variable, but didnt work, in the past it did. ...

Convex + Tanstack Start + Clerk

Hi! I'm trying to add authentication using Clerk to the Trellaux example from the Tanstack-Start site (https://tanstack.com/router/latest/docs/framework/react/examples/start-convex-trellaux). However, the guides from the Convex/Clerk site do not work. ConvexProviderWithClerk seems not supported on Start, so in Convex functions I am not able to get the user identity with ctx.auth.getUserIdentity(). Is there any way to make it work? Thanks...

[Convex Ents](bug): One to many edge with weird type

my schema looks like that ```ts const schema = defineEntSchema({ // other ents ...

/authenticate route to get the Bearer Token of the user given their username and pass using Clerk

How can I fix this httpAction to use Clerk to get the Bearer token of the user based on the username and password that the user will provide in the request body of the api call to convex: ``` import { httpAction } from "../_generated/server"; import { Clerk } from "@clerk/clerk-js"; ...

[Solved] Error: 1013

hey everyone, I was starting my dev app as usual and I noticed that my avatar wasn't appearing, I check console, and I found it constantly repeating
WebSocket closed with code 1013: AuthProviderDiscoveryFailed
logging.ts:96 Attempting reconnect in 118.9021804382428ms
logging.ts:96 WebSocket reconnected
WebSocket closed with code 1013: AuthProviderDiscoveryFailed
logging.ts:96 Attempting reconnect in 118.9021804382428ms
logging.ts:96 WebSocket reconnected
...
No description

Tanstack query with usePaginatedQuery is not working

I'm having trouble using TanStack Query's usePaginatedQuery. It doesn’t seem to behave as expected, and TypeScript is throwing errors. Here’s the code and the error I’m encountering: Working Example This works fine: ...

Preloading stateful pagination

Can you mix usePreloadedQuery with usePaginatedQuery? I'm server-rendering search results for SEO purposes in Next 15 — but once the client's hydrated, from there I want to empower the use to filter.

Lemon Squeezy

Does anyone know how to integrate Lemon Squeezy with Convex?

[storage] Is it possible to reference file url instead of storage id in a table?

Hi, I've just started trying out Convex file storage. The documentation uses a chat app example (https://docs.convex.dev/file-storage/serve-files#generating-file-url-in-queries): 1. If the message is an image, it's message.body is a storage id 2. when retrieving that message, the convex function uses await ctx.storage.getUrl(message.body) to convert storage id to file url I observed that ...

Type inference is not ok. Is assuming the user properties are null

```ts import { query } from "./_generated/server"; import { paginationOptsValidator } from "convex/server"; import { getAll } from "convex-helpers/server/relationships"; ...

How to implement pagination with join and filtering

Given that I have these 2 tables that describes a 1-to-many relationship: "a user can be member of 1 or many groups" ```typescript defineSchema({ groups: defineTable({ group_name: v.string(),...

convex google oauth issue

I configured the google oauth in the providers, but got an error. `providers: [ GitHub({ profile(githubProfile) {...

How can i add phone auth to an existing user with Convex Auth

I have a user who's signed up and I want to enable them the ability to also sign in with their phone number. Most of the documentation shows showing either logging in with phone or with email but not both. It seems like there is a shouldLinkViaPhone and shouldLinkViaEmail in the createAccount function but i'm not sure how to implement it. Also is there a way to store the phone number without verifying it? Say we only want to verify (with phone) our Users in the US rather than all of them. At first glance, it seems like i'd have to create a separate user_profile table but i wonder if there's a way to do this directly in the existing auth tables....

HTTP Path Suffix Not Working?

Now it is almost midnight for me so I could have missed something, but I'm not able to get HTTP routes like https:CONVEX_URL.site/route/$params Am i doing something wrong? I get the Response No matching routes found The docs: https://docs.convex.dev/functions/http-actions#defining-http-actions...
No description

Pricing Plans

Hello Convex Team, I am currently building a Next.js chat application for a client. I am stuck at estimating price for the product as I am unsure how does Convex charge. Can you help me a detailed pricing plan. I will be using the data & files module in my chat application...

[Resolved] - TypeError: Cannot destructure property 'signIn' of useAuthActions

Using @tanstack/start and when I go to create a signin component: ``` import { useAuthActions } from "@convex-dev/auth/react"; ...

issue with convexAuthNextjsMiddleware

i am using convexAuthNextjsMiddleware as my middleware and when using nextjsMiddlewareRedirect it changes the route but not the url

convex aggregate documentation

I'm not sure if the documentation missing something, but i keep getting: Expected 3 type arguments, but got 1. "@convex-dev/aggregate": "^0.1.16",...
No description