sql Query to fetch the project name in shared filters

sasis July 31, 2014

Hi,

Any one have idea about sql Query to fetch the project name in shared filters

ie if filter name is fdpio which consists project =xyz

i would like to get the filters with particular value xyz

1 answer

0 votes
Alexey_Rjeutski__Polontech_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 31, 2014

You can search for filters in table searchrequest.

As for the query, you can use something like

SELECT filtername FROM searchrequest WHERE reqcontent LIKE '%xyz%';

but that will give you a lot of false alarms. As jira uses jql query string to keep the filter query that can be interpreted in a big set of ways - creation of such universal query seems to be impossible.

Suggest an answer

Log in or Sign up to answer