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

Svelte SSR

@ballingt So I'm getting an error when switching between statuses. ```ts <script lang="ts"> import { page } from '$app/stores'; import { useQuery } from 'convex-svelte';...
No description

One of the use cases I’m considering for

One of the use cases I’m considering for convex involves mapping records on a map. It would be multiplayer in nature. Since this may result in many many queries as a user panes the map around and applies filters, I’m wondering if this would blow through the function call limit. Compared to using postgis + pg for example ? Not sure if this is totally correct assumption but just curious...

Hi, everyone. I'm considering using

Hi, everyone. I'm considering using Convex for a react app where the input is an image(of a product) provided by the user, and the output should be the info of the product in the image. This would be a basic customer support app where the user take a picture of the product he has problems with and the app recognizes the product using the image and provides info(FAQs or related). The idea would be to vectorize all the product images, save them in a vector DB, and use it for a vector search. I have found examples using Supabase as the DB. How suitable would be Convex for this project? Do you have any sample project/repository I could use as a reference?Thx for your help....

Default values for fields

```ts export default defineSchema({ users: defineTable({ firstName: v.string(), lastName: v.string(),...

Use of Node.js with Python client

But why should I use node when I am not even using it for the code. Like If I am using python I'll need to use node to setup the env. Don't you think it is a bit of a overkill as I have to perform so many steps to setup convex for python.

Usage page clarity

feedback: on the usage side of the dashboard, it would be great for many of us to have a percentage of the used along with the numbers. would this be possibile?
No description

I am making an ecommerce site and

I am making an ecommerce site and thinking to use convex but can't really able to get it

How many people viewing website

I want to display how many people are viewing my website (and display this number on the website). How can I do this with convex?

Does anyone have a provider suggestion

Does anyone have a provider suggestion for getting inbound emails to convex ?

```http://localhost:3000/?code=

http://localhost:3000/?code=96547846
http://localhost:3000/?code=96547846
Is this supposed to happen after the discord login wiht convex-auth?...

Change on functions page

new dashboard bug? If i click functions, every file is expanded-defaulting to open and not remembering a closed state. at nearly 400 functions its a long list..

filtering pagination

When using getPages (from convex-helpers/server/pagination), how can I apply a filter (or search)? I would to pagination through the table payments but only on a subset of this table. But I can't see a way to apply a filter. It looks like the pagination applies to the whole table by default

hey guys ! I wanted to switch from

hey guys ! I wanted to switch from mongoDB to convex on my app and my app is currently using tanstack query. I seen on the doc that we can use tanstack query with convex, but is it usefull ?

How can i update a table in convex with

How can i update a table in convex with a new field?

Some of the templates have gone pretty deep

Hello! Is there any “real world code” example around ? I think we have thousands of hello world demo or prototypes but i didn’t find one structured example or open source project. I would love to learn from that

I saw that convex actions timeout after

I saw that convex actions timeout after 10 minutes, is there any way to bypass this limit? I need to call an API and then keep fetching for the progress (I show a progress bar in the UI) until it is completed, most of the times it justs takes 1 minute but I don’t want to lose the tasks that take longer than 10min

Clerk to Convex

Anyone who has moved their auth from clerk to convex-auth? Would love to know more about your experience

whats up with the dashboard if you are

whats up with the dashboard if you are on a development instance and you refresh it goes straight to 404, i also can no longer get to links to other dev enviroments

Gotta thank you for sharing this. I was

Gotta thank you for sharing this. I was fighting the UI portion of this personal app I'm building, and not really liking the outcome. Ditching Tailwind and moving to Mantine has literally made the development process enjoyable again, partly because I'm moving a lot faster, but also because the Mantine components are just built so freaking well.

Convex Auth JWT key

Loving convex so far! Looking to implement auth, and have two users: - user: password or OAuth SSO. - positions: QR code / perpetual magic link Positions are users who might be different people, but they need access if they are filling their volunteer role. ...