host.table.append
Append one row (an object) or several (an array of objects) to a declared table. Each row is validated against the table's schema first -- a type mismatch fails the whole call with table_schema_violation and writes nothing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rows | Yes | One row (an object) or several (an array of objects), each validated against the table's schema. | |
| table | Yes | Name of the declared table to append to. | |
| tenant_key | No | The key `signup` returned. Required only when this connection carries no Authorization: Bearer header -- when both are present, the header wins. |