Vote on features you want to see built. Back requests with Convex Chips to influence priority.
We need a way to filter through tens of thousands of records in miliseconds without JavaScript client-side filtering. Component Indexes don't do the trick if you have more than say 4-5 filters for a table. I don't want to bother with setting up a typesense instance and maintaining it but I still wan…
not using convex everyday now, just on the weekends, and it asks me to log in every week. it's probably a good default right now, though I have noticed it's a bit more eager to expire than other SaaS's
Certain workloads like generating a PDF or processing/zipping larger files are currently impossible with the low memory limits on actions. It would be ideal to at least have the option to specify the memory limit on actions (ideally per action like AWS Lambda). Even 1GB would be better than nothing,…
It's very useful to be able to view traces and spans for operations in logging applications like Axiom. Currently, there are some limitations that make this difficult to implement, and in some cases, impossible: The OpenTelemetry node packages require "use node", so the only place we can use the off…
Requesting an official, first-party Flutter/Dart SDK maintained by the Convex team — on par with the existing React, React Native, and JavaScript client SDKs. Why this matters Flutter is one of the fastest-growing cross-platform frameworks, powering apps across iOS, Android, web, macOS, Windows, and…
Can you please update the dashboard usage to show the current usage vs the total limit please? For example: I would like to see the current usage vs the total usage available, for example on free plan: Function calls: 1.3K/1M This helps to keep track of usage and be aware of getting closer to the cu…
Would benefit from clear guidance/support on monorepos. Very strong differences exist across different documentations: turbo-expo-nextjs-clerk-convex-monorepo describes creating a package which contains convex. - Side Note with skills/agent docs: Convex cli assumes ../ as the repo root, placing all…
I am aware of the Convex Helpers package, which allows us to write custom context objects on queries, mutations, and actions, but that only allows us to write the CTX object before the request happens and not after a response is returned. My biggest use for this would be to enable convex compatibili…
Convex actions can call external services over HTTP, but there is currently no way for Convex backend code to establish and maintain an outbound WebSocket connection to an external service. This limits an important class of backend integrations where a Convex deployment needs to subscribe to and pro…
Stripe has a new product that allows users to provision projects from the CLI. Having access to the Convex backend services would be useful for projects that want to use Stripe payments. Some other PaaS and database vendors already offer this integration. Read the docs
When running convex in dev mode and making changes that lead to an error (like a type error), its currently very easy to overlook that problem, because the error is only surfaced in the terminal where the dev process is running and the convex deployment just remains in it's previous state. It's pret…
it is useful to have access to http headers to check ip or some custom headers from client like version or agent. currently there is no way to do it
iOS currently lacks support for typesafe generated client for convex, would be cool to have one!
When you install and create a component with its own data-store, if you later remove that component. We should be able to remove the data.
Give every app using Convex the ability to create their own Ship page using a dedicated Convex component. Then, provide a way for the top requests to sync directly into Linear.
File editing, json rendering support, faster start, native MCP Tool Support, no 10 minute timeout
EU plans currently don't have any included usage. We expect to have some included usage, like the US plans do.
Provide an officially supported Nuxt integration with idiomatic stores, subscriptions, and end-to-end examples maintained by the Convex team.
Queries are read-only — they can’t schedule mutations or actions. But queries are often the first place you detect that background work is needed (a cache miss, stale data, a missing materialized row). Today the only options are: client round-trips (extra latency, duplicated trigger logic, race cond…
Sometimes I run into issues like a query or mutation failing because it takes longer than 1s. I would like a way to have more logging so I can see where something failed in a local isolate.