/workspace/templates/sql_table_insert
The sql_table_insert query template module allows to insert multiple records provided as a request POST body into a SQL table.
The POST body must contain properties for each field. The key will be split on :: to provide the field name and the cast for values in the values array.
{
"letters::varchar": [
"a",
"b"
],
"drop table (table)": [1,2], // Potential SQL Injection
"numbers::int": [
1,
2
]
}