Add a database row
rootr_add_rowAppend a row to a Rootr database by mapping property names or IDs to values. Supports text, numbers, selects, dates, and more.
Instructions
Append a row to a Rootr (루터) DATABASE. values maps property NAME (or id) → value. Value shapes by type: title/text/url/select/person → string; number → number; multi_select → string[]; checkbox → boolean; date → { start: "YYYY-MM-DD", end? }. A select value is the OPTION NAME. Call rootr_read_database first to learn the columns. Optionally set position to insert at an index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | { propertyNameOrId: value } for the new row | |
| position | No | 0-based insert index; appended at the end if omitted | |
| databaseId | Yes | DATABASE node id |