Query Pre-processing for JSON Schema Storage
I'm working on an app in which I need to store JSON Schemas:
My first instinct was to use an Object data-type, but because Convex disallows keys starting with
$
that idea was out.
So I figured I could just use some serialization in the handler to store the JSON Schemas as plain text:
But it seems like the handler is pre-validating the args and rejecting the JSON Schemas because of the keys that start with $.
I'd love for this serialization to happen auto-magically when creating / retrieving records—is there a preprocessing hook or something I can tap into to coerce the args into an acceptable format?2 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
Guessing
modelData
is the object you're inserting to the database? Can you confirm that the schema for the table you're inserting to has inputSchemaJson
and outputSchemaJson
field types set to string? And that npx convex dev
is running successfully and not erroring so your schema changes are deployed.