Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You will typically create the Extended search filter for the board and reuse it for in the box.

The process of creating the filter from scratch looks like this:

  1. Create a filter in Extended search

  2. Wait for BigPicture to sync the filters list (see the note below)

  3. Use the filter in BigPicture’s box configuration: Task → Scope Definition → Automatic Rules

...

Create a quick filter that uses the JQL extensions:

...

Use the quick filter thath that highlights the matching issues:

...

  1. In the box view, click on the search loupe icon 🔍

  2. Make sure the search is in the JQL mode - click on the ABC on the left to change the mode to JQL

  3. Enter your JQL query

TIP: In JQL, You can refer to filters with filter="Your filter name".

...

The above query could be limited to one project but or it can also source the issues from multiple projects.

...

  1. Create an Extended search filter:
    issue in linkedIssuesOfQuery("project=MYPROJ", "is blocked by")
    and call it “Blockers”

  2. Create another filter that nests the first filter:
    project=MYPROJ OR filter="Blockers" OR issue in childrenOfIssuesInQueryRecursive("filter='Blockers'")

  3. Use the filter as your scope in the box configuration

...

Create a quick filter with JQL:

linksCount>2

You can see only the tasks that have a specific number of links. In this example, all the tasks with more than 2 links are going to be highlighted.

...

You can now see all the finished epics that still have with tasks that need to be looked at.

...