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

instanceof Error

Could you provide the error class type for comparison, for example via try { } catch (error) { // error typescript any...
No description

useQuery never enters Error state

When an error is thrown within the query the query stays in isLoading state. Within the query we throw expected errors. When a resource isn't found (ie the id doesn't exist in the database). We are using svelte. ...

Quering random row

Hello, what would be the best way to query a random row from DB via Convex? I have a game project where users should get a random image, each image should be a row in DB (ideally) and there will be more than 100 images.

How to do something on a specific date or time?

I'm wondering if it is possible to do something on a specific date or time. For instance, I have a taskboard in my app where I can set a due date. I would like to add to a table if the date is either near, on date or past date. I was looking at scheduled functions, but I couldn't figure out if that could lookup a value in the database and then do the function?...

Why is it that file names only appear when uploading through the console?

When I upload files using a script equal to the one in the documentation, the file name does not seem to be stored, as you can see from the screen shot. But when I upload the file manually through the console, it does seem to get the file name store (and with the proper extension). I don't see a parameter in the documentation to specify the file name....
No description

Convex Auth Missing SITE_URL in Expo App

The docs say that SITE_URL is not needed when I am using react native. For my expo app I am getting an error regarding missing env SITE_URL. Is there anything I am missing or is SITE_URL actually required?
No description

Querying for dev/preview/prod status within code?

Does Convex offer a way to query for whether the app is dev, preview, or prod? I can use process.env.NODE_ENV to check for prod or dev but it registers preview deploys as production. (This is just the way NODE_ENV works so I’m wondering if there is an equivalent CONVEX_ENV of sorts)

Buggy dashboard schema validator

See screenrecording. I briefly remove a field and add it back in but I still see errors

Delete all files

Is there an easy way to clear all files in convex storage? I'm doing 20 at a time and I have 1k total.

stripe + process.env

For my app, process.env variable for Stripe are being picked up from development area in convex but not project wide default env variables. Does this happen with test keys only? process.env.STRIPE_SECRET_KEY...

i need to cancel duplicated scheduled task

is there such feature. I have a webhook that fires multiple times in a short period and i need to cancel if its duplicated

import declarate import *.png

Since convex does not allow us to explicitly load the loader such as a link to import *.png. And I ask the question: how to ignore it? since they serve for the astro application, but for the backend I need its key values. As far as I get the image key name they are just referencing....
No description

Infinite loading schema on dashboard / unable to push

Currently not able to push a schema to Convex even though type check passes and I'm not able to see the current schema in the dashboard as it shows an infinite loading state. How do I "reset" it?...
No description

Sorting different on backend vs frontend in React

I have a weird bug where I have a query that sorts a table of tasks based on "start_date".
```const tasks = await ctx.db.query("tasks") .withIndex("by_project", (q) => q.eq("project_id", projectId)) .order("asc")...

Migrations `dryRun` on multiple samples

When I run a migration in dry mode it executes on only one single document, which sometimes is skipped because it's not the instance of a document that needs to be migrated, which makes it hard to test the migration. Any suggestions?

Validate convex auth from standalone hono server.

I have a use case where we have a standalone hono server with cloudflare AI worker. It lives in the same repo as our convex backend, and the rest of our stack. I'd like to make calls with it from our frontend, but want those calls to only be made from an authed user....
No description

Schema Type Info Not Propagating In Svelte / VSCode

Couldn't find a similar post / issue so... I have defined a schema like this... ``` import { defineSchema, defineTable } from "convex/server";...
No description

prefix validator keys helper 🙏

I'm playing around with this code: ```ts // Helper function to prefix object keys for the Convex validator function prefixValidatorKeys<T extends Record<string, any>>(obj: T, prefix: z.infer<typeof zBlockType>) { return Object.fromEntries(...

Convex Auth Typescript Error with Vercel

A new convex deployment, first time deploy to Vercel throws this error ``` import type { MutationCtx } from "./_generated/server.d"; import { convexAuth } from "@convex-dev/auth/server";...
No description

App stuck reconnecting via websocket

Hi folks, I have been migrating my pet project over to convex and everything has been smooth so far. However, all of the sudden, my app (react) no longer seems to be able to connect to the dashboard via websocket. It keeps trying to "sync" in the network tab (see screenshot) but it never succeeds connecting, just stuck in an infinite loop of re-trying. ...
No description