List all issues that are blocking issues that are due soon

Use case

In the following use case we use a JWT JQL function in order to retrieve all issues that are blocking issues that are due in the next 7 days.

This way you can keep track on issues that need to be done soon in order to reach all set due dates in time.


⚒️ Configuration

Use the following JQL:

issue in linkedTo("due < endOfDay(7) and due > now()", "is blocked by") and resolution is empty


📷 Screenshots

Using the above JQL and having issues like shown below in this example, JWT-2 would be returned because

  • The used link type is "is blocked by"

  • It is blocking an issue that is due in the next 7 days

  • It's resolution is empty


ListAllIssuesThatAreBlocking.png


📚 Related use cases