We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following query inserts a JSON object to a table with a JSONB column.
UPDATE public.property_history SET attributes = ${sql.jsonb(attributes ?? null)}, status = ${status} WHERE id = ${id}
When utilizing slonik using
await createPool(pgConnString!, {typeParsers});
it inserts correctly as an object.
However the same query inserts the object as a stringified string when using:
const PgPool = createPostgresBridge(postgres); await createPool(pgConnString!, {PgPool, typeParsers});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following query inserts a JSON object to a table with a JSONB column.
When utilizing slonik using
it inserts correctly as an object.
However the same query inserts the object as a stringified string when using:
The text was updated successfully, but these errors were encountered: