DocsFind & FilterFilters
Back
Find & Filter

Filters

Narrow your backlog to exactly what you need. All filters work with xpo list on the CLI and the web board's filter controls, and they can be combined freely.

Status

xpo list --status PLANNED
xpo list -s DOING
xpo list -s BACKLOG -s PLANNED    # multiple statuses

Labels

xpo list --label bug
xpo list -l feature

Assignee

xpo list --assignee "Alice"       # substring match
xpo list --mine                   # assigned to you

Time range

xpo list --since 1d               # updated in last day
xpo list --since 1w               # updated in last week
xpo list --since 2025-01-01       # updated since date
xpo list --before 2025-06-01      # updated before date

Parent

xpo list -p <epic-id>             # children of an epic

Cycle

xpo list --cycle current
xpo list --cycle next
xpo list --cycle 2025-06-23

Include completed/archived

By default, old DONE issues are hidden:

xpo list --all                    # include old DONE
xpo list --archived               # include archived issues

Combining filters

All filters can be combined:

xpo list --status DOING --label feature --mine --since 1w