Jonathan
Jonathan
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
ESLint Errors in Vite Template
Does anyone else get this type of eslint issue when using the default Vite template?
Parsing error: ESLint was configured to run on `<tsconfigRootDir>/convex/backfill.ts` using `parserOptions.project`:
- <tsconfigRootDir>/tsconfig.node.json
- <tsconfigRootDir>/tsconfig.app.json
However, none of those TSConfigs include this file. Either:
- Change ESLint's list of included files to not include this file
- Change one of those TSConfigs to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
Parsing error: ESLint was configured to run on `<tsconfigRootDir>/convex/backfill.ts` using `parserOptions.project`:
- <tsconfigRootDir>/tsconfig.node.json
- <tsconfigRootDir>/tsconfig.app.json
However, none of those TSConfigs include this file. Either:
- Change ESLint's list of included files to not include this file
- Change one of those TSConfigs to include this file
- Create a new TSConfig that includes this file and include it in your parserOptions.project
See the typescript-eslint docs for more info: https://typescript-eslint.io/troubleshooting/typed-linting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
2 replies
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
Quick Reset for Dev DB
Is there a quick reset for dev data? Or is it better to just do a local dev when needing to do that. Essentially I am making changes fast, creating a function create initial set of data and would like to just reset it sometimes easily.
2 replies
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
Normilization Best Practices
Does anyone have a guide to best practices for normilization of the tables in Convex, maybe assumptions you would do in RDMS/SQL but wouldn't do in Convex.
6 replies
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
Multiple Clerk Apps with 1 Convex
Is it possible to use 1 Convex DB with multiple Clerk applications? My use case is this: - Backend Clerk App - This is used by our customers to maintain their data - Customer's Portals - This is used for their customers to submit data. Is this possible?
2 replies
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
Handling Updating Large amounts of Rows
If I need to update thousands of rows, what is the best approach for this to not get hit with mutation limits?
11 replies
CCConvex Community
Created by Jonathan on 4/25/2025 in #support-community
AG-Grid Datasource
Has anyone built an AG-Grid Data Source for Convex? I use ag-grid and it might be worth building an opensource library for it to handle paging and such easily with convex.
4 replies
CCConvex Community
Created by Jonathan on 4/21/2025 in #support-community
Transaction Log/Audit Log in Convex
Is there a good way to build an audit log in convex? Just thinking through how some of the foundational pieces of convex actually works with its transaction log, is there any way to access this log through the sdk? I would like to be able to track what users change which data and would love to have that information if it is available already.
2 replies
CCConvex Community
Created by Jonathan on 4/17/2025 in #support-community
Custom Metadata/Extending Schema
Is it possible to extend or add additional metadata/properties on the schema? We keep a few extra properties on a "schema" like object in our app now, would be nice to just merge the concept. For example it can be something as simple as label for the label that is on the field. Or other things like input_type which may be the type of input control to use. Is it possible to do this and also read the schema in our application?
3 replies
CCConvex Community
Created by Jonathan on 4/14/2025 in #support-community
Migrating to Convex from RDMS/SQL
I would love to hear about someone's approach moving from a traditional SQL platform to Convex and any patterns or practices they took. For me we run a very large CRM application and would love to move to something like Convex even if it was some type of lift and shift approach. But I would love to hear opinions or approaches anyone has taken. I feel like we could start finding a way to use Convex just for reading data on a small scale but it is when we want to shift to writing is the big question.
51 replies
CCConvex Community
Created by Jonathan on 4/14/2025 in #support-community
Pub/Sub Topic Structure
Does Convex offer any type of pub/sub topic based solution? I have looked at the workflow features and they are close but I do have cases wher eI want to fan out events to additional subscribers. I have used Reddis and Inngest in the past.
5 replies
CCConvex Community
Created by Jonathan on 4/12/2025 in #support-community
Getting started with Convex and MonoRepo
I am looking at building a project that has the following: - Mobile Expo App - Multiple Next JS applications In the past I always do this in a monorepo, is there anything special I have to do to make the apps use the same generated code? Is there any best practices?
10 replies