How to get the list of projects for specific issuetype in jira

Nayana S
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 23, 2024

For example:- 

There is a issue type called Epic, We need to get to know in how many projects is Epic issue type is added.

 

2 answers

1 vote
Nic Brough -Adaptavist-
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.
February 23, 2024

Welcome to the Atlassian Community!

You can not directly do this, you will need to look at the list of issue types, note what schemes they are used in, and then go to the issue type schemes list to see what projects use them.

The issue type scheme list does list the issue types in the display though, so you could just start there, looking for "epic" in every line.

0 votes
Payne
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.
February 23, 2024

Here's something that may or may not work for you ... use JQL to view all issues for the issue type of interest, order by project, and include project in the displayed columns; then, just scroll down the list noting each time the project changes value. Perhaps limit the returned issues to just the ones created in the past year. i.e.

issuetype = Epic AND created > -365d ORDER BY project

Suggest an answer

Log in or Sign up to answer