Group Rows
bike_group_rowsGroups multiple rows under a new or existing parent row in Bike outlines. Supports creating groups in place or moving to specified positions.
Instructions
Groups multiple rows under a new or existing parent row.
Two modes:
Create new group: Provide group_name to create a new parent row and move specified rows into it. By default, the group is created in-place (before the first row being grouped).
Move to existing: Provide parent_id to move rows into an existing row.
Use position ('first'/'last' for root, 'before'/'after' with reference_id) to override placement.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_ids | Yes | Array of row IDs to group together. | |
| position | No | Where to place the new group row. Default: in-place (before the first row being grouped). Use 'first'/'last' for root level, or 'before'/'after' with reference_id. | last |
| parent_id | No | ID of an existing row to move the rows into. If not provided, a new group row is created. | |
| group_name | No | Name for the new group row. Required if parent_id is not provided. | |
| reference_id | No | Required when position is 'before' or 'after'. |