Hi,
Need help with jql that fetches only the epics linked to a given capability in a project
I tried to use childIssuesOf() but this returns even the stories & test cases along with the epics.
Welcome to the community i think you have to fetch the epics linked to the project right.
can you try with this JQL
issue in ( linkedIssues("TT-1234") ) In place of TT mention your project key.
My project has multiple capabilities and I want to list down the epics under one given capability.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To fetch the epics of all projects you can try with the below JQL
issue in ( linkedIssues("TT-1234") AND issuetype=Epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL which i have provided is helped to you right can you please hit Accepted Answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @chandini kalra if you want to narrow down to Epic types you can add to your query type = Epic. Tell us more about this given capability means for you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.