Large json objects
Is there a solution built into convex for uploading larger JSON objects?
5 Replies
(btw for small questions like this i recommend making #support-community threads)
How large do you need? Convex has size limits on each object https://docs.convex.dev/database/types#limits
Data Types | Convex Developer Hub
All Convex documents are defined as Javascript objects. These objects can have
If you're within those limits, you can upload jsonl files with
npx convex import
You can also upload json objects through the dashboard "add documents" button, or with the python clientThanks, the thing is I don’t need anymore more than storing it so would just using a stringify work?
sure you can store a string in convex