bwrb dashboard
A dashboard is a saved list query. Run dashboards to execute saved queries and manage them with subcommands.
Synopsis
Section titled “Synopsis”bwrb dashboard [options] [name]bwrb dashboard <subcommand>Running Dashboards
Section titled “Running Dashboards”Execute a saved dashboard by name:
bwrb dashboard my-tasksbwrb dashboard inbox --output json # Override output formatOptions
Section titled “Options”| Option | Description |
|---|---|
--output <format> | Override output format: text, paths, tree, link, json |
--receipt | With JSON output, return dashboard identity, its saved definition, the applied query, counts, truncation, and data rows |
Subcommands
Section titled “Subcommands”| Subcommand | Description |
|---|---|
list | List all saved dashboards |
new <name> | Create a new dashboard |
edit [name] | Edit an existing dashboard |
delete [name] | Delete a dashboard |
Creating Dashboards
Section titled “Creating Dashboards”From bwrb list
Section titled “From bwrb list”Save any list query as a dashboard:
bwrb list task --where "status='active'" --save-as "active-tasks"bwrb list task --output tree --save-as "task-tree" --forcebwrb list task --count --save-as "task-count"Dashboards saved from bwrb list preserve filters, default output settings,
selected fields, --sort, --desc, --limit, and --count.
With dashboard new
Section titled “With dashboard new”Create a dashboard directly:
bwrb dashboard new my-query --type task --where "status=active"Examples
Section titled “Examples”# Run a dashboardbwrb dashboard my-tasks
# Override output formatbwrb dashboard inbox --output json
# List all dashboardsbwrb dashboard listbwrb dashboard list --output json
# Create a new dashboardbwrb dashboard new my-query --type task --where "status=active"
# Edit a dashboardbwrb dashboard edit my-tasks
# Delete a dashboardbwrb dashboard delete my-tasks --forcebwrb dashboard delete my-tasks -o json --forceQuery Receipts
Section titled “Query Receipts”With --receipt and effective JSON output, dashboard output identifies the dashboard name
and saved definition alongside the applied query, then reports matched and returned counts,
truncated, and rows under data. It is JSON-only, incompatible with
--count, and receipt metadata is not persisted when saving a dashboard.
See Also
Section titled “See Also”- CLI Safety and Flags —
--executevs--forcesemantics - bwrb list — List and filter notes
- Targeting Model — Selector reference