Versions Compared

Key

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

Introduction

Atlassian imposes limitations on how ScriptRunner JQL functions can integrate with their infrastructure.

With ScriptRunner Enhanced Search, users can utilize JQL functions and save them as filters for use in Atlassian's JQL search.
This means that you will be able to use it with Tissue Cloud! (smile)

Steps to follow

Head to ScriptRunner Enhanced Search

...

Enter your JQL

...

Check that the issues displayed are what you expect

...

Save JQL as a filter

...

Update the filter options as required

...

It is possible to achieve this feature directly by setting the “Hide Incomplete Rows“ preference in the gadget.

For details, please refer to Release Notes for 3.5.0.

Introduction

The Tissue Gadget use the issues from the primary set of issues to join up with linked issues from the secondary set of issues.
It will display blank values when there is no linked issues. This is similar to a Left Join in database terminology.

In some cases, the users may only want to display rows which have matching linked issues.
The Inner Join will skip those issues in the primary set of issues which does not have linked issues

SQL Join.pngImage Added

Example

Primary Set of Issues (Epics)

Key

Epic Name

Linked Issue

TIS-100

TIS bug fix

CS-18

TIS-99

TIS feature improvement

CS-10

TIS-98

TIS UI improvement

CS-15

TIS-20

TIS performance fix

Secondary Set of Issues (Feature request to be linked to epics)

Key

Summary

Status

CS-18

TypeError when the issue data does not contain issuelinks field

Pending Dev

CS-15

To allow multiple link types for each level

Pending Dev

CS-10

To unescape the title which contains special characters

Pending Dev

How the different join looks like

Left Join (Default)

Key

Summary

Linked Issue

Status

TIS-100

TIS bug fix

CS-18

Pending Dev

TIS-99

TIS feature improvement

CS-10

Pending Dev

TIS-98

TIS UI improvement

CS-15

Pending Dev

TIS-20

TIS performance fix

Left Join.pngImage Added

Inner Join

Key

Summary

Linked Issue

Status

TIS-100

TIS bug fix

CS-18

Pending Dev

TIS-99

TIS feature improvement

CS-10

Pending Dev

TIS-98

TIS UI improvement

CS-15

Pending Dev

The row containing TIS-20 is omitted because no issues are linked to it

Inner Join.pngImage Added

How to achieve Inner Join

The trick is use the LinkedIssuesOf JQL function (from ScriptRunner Enhanced Search) on the primary set of issues.
It is possible to apply filtering to exclude issues with no matching linked issues.

There are 2 parts

1. Create a JQL filter for the primary set of issues

  1. Head to ScriptRunner Enhanced Search from the Apps menu

    ScriptRunner Enhanced Search.pngImage Added

  2. Specify the JQL to fetch the linked issues as the parameter for the linkedIssuesOf function

    1. E.g. Fetching linked issues with the status Awaiting Dev and Link Issue Type = is related to

      Code Block
      issueFunction in linkedIssuesOf(status in ("Awaiting Dev"), "is related to")

  3. It should display only those issues that have links. You may also add more conditions to do filtering on the primary set of issues.

    JQL Search Results.pngImage Added

  4. Click Save as Filter button to save the JQL as a filter to use it in TISSUE

    JQL Search.pngImage Added

  5. Update the filter options as required

    Save Filter Options.pngImage Added
Tip

You can choose another meaningful name for your Filter.

2. Use the Filter in Tissue Gadget

  1. Use the created filter in TISSUE by using the JQL command below

Code Block
filter = <"

...

You will be able to see the same results shown in Step 3 in your Tissue Gadget

...

YourCreatedFilterName">

Adding to Tissue JQL.pngImage Removed