Hi Experts,
I would like to query an EPIC List with some special conditions,
but don't know how to specify such queries,
could anyone help on this?!
Example:
project in ("ABC") AND type in (EPIC) AND labels in ("DEF")
and
>>other conditions in
1) There is/is not sub-tickets/subt-tasks in this EPIC
2) There is specific word in sub-tickets' summary
3) There is specific name in sub-tickets' assignee
Thanks
You need ScriptRunner in order to do such queries.
There is/is not sub-tickets/subt-tasks in this EPIC
project = PRJ AND issuetype = Epic AND issueFunction in epicsOf("project = PRJ")
There is specific word in sub-tickets' summary
project = ECP AND issuetype = Epic AND issueFunction in epicsOf("project = PRJ AND summary ~ word")
There is specific name in sub-tickets' assignee
project = PRJ AND issuetype = Epic AND issueFunction in epicsOf("project = PRJ AND assignee = username")
Let me know if it helps.
Cheers,
David
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.