Search filters that use an issue link type
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
When updating an issue link type, the change is not cascaded to filters that use the issue link type.
This KB is for DB queries that search filters that make use of a specific issue link type.
Solution
Issue linktypes have an inward and outward link. You can verify this in the description of the link type as explained in Documentation on Configuring issue linking.
The examples below are for the "Dependent" Issue Link:

Inward:
1
select * from searchrequest where reqcontent like '%issueLinkType%is a dependent of%';
Outward:
1
select * from searchrequest where reqcontent like '%issueLinkType%depends on%';
Was this helpful?