Hi,
I am requested to create Agile Board, when filtering by components should relate only to the items themselves (Stories, CCRs …) regardless of the component of their epic.
Using the query below, I can see only the Stories and CCRs with component X when the epic has the same component X.
project = ABC AND component = X
But I need to see also items with component X, when their epics have different component (!=X )
Thanks,
Hi
I would use the following
(project = ABC AND (component = X )) or (issuetype = Epic and component = X)
In alternative if you have scriptrunner enhanced search you can build a query by requesting the child issues of Epics with component = X plus all the issues with component = x
(issueFunction in childrenOf("issuetype = Epic and component in ("x")")) or (project = ABC and component = x)
In the board use the swimlanes (group) by Epic to be able to see the Epic the issues owned to, even if they do not pop up in the query
Finally , the most complete one, to see also the Epics of issues with component = x, even if they do not have that component set:
(issueFunction in childrenOf("issuetype = Epic and component in ("x")")) or (project = ABC and component = x) or (issueFunction in epicsOf("project =ABC and component = x"))
Regards
Laura
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you could try
project = ABC AND (component = X OR issuetype = Epic)
Hope it helps,
Thanks,
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.
Clarification: using the query project = ABC AND component = X I can see all items with component X, but if their Epic has different component, the Epic is not presented in Epic Column.
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.