im trying to find in JQL an Epic that one of his children are in the same project as Im woking on
For example:
Project = a.
Epic = a1
Story = a2
Story = J5
I want to find the Epic that contains story from other specific project
Hi Tal_Harel,
Sadly you cannot achieve the desired search using standard features on Jira, you must go for a third-party app instead. Using i.e. JQL Booster Pack you can type the following:
1) Search for Epics on 'PROJECTA' having at least one story on that project:
project = PROJECTA AND issue in epicsOf(' project = PROJECTA AND type = Story ')
(*) Note that this is just an example, you must tune above query to fit your needs.
Using this app you can also query other issues relations, check:
References:
Kind Regards
Hi Tal
Did you find the solution to your problem?
I have more or less the same queston (im trying to find in JQL all Epics that one of his children are in the same project as Im woking on), breaking my head for quite some time now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can achieve this by using a third party plugin like ScriptRunner or JQL Search extensions.
Here is example from JQL Search Extensions for Jira & reports
it will get all epics where stories belongs to project search.
issue in epicOf(
"type = story and project = SEARCH"
)
:
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.