Hi all,
I need to make a search to return a list of issues where a condition is on an issue picker custom field value.
The data model is simple, I have two issueType, "Car" and "Official Model":
This query works:
issuetype = "Car" and Model in ("OM-250")
and return all cars that has the Model-250 as value of Model field
What i need is a query to return all cars that has as model any OfficalModel that has a PriceLevel equal to "cheap",
something like:
issuetype = "Car" and Model in execute(issueType = "OfficalModel" AND PriceLevel = "cheap")
Any idea? Thanks in advance
I'm trying to solve using a different addon that seems for now what I need.
This addon create both a link (so the previous suggested solution is ok) and a copy of a value inside the issueType. The addon is Issue Picker for Jira: https://marketplace.atlassian.com/apps/1218048/issue-picker-for-jira?hosting=server&tab=overview
We use a similar add-on, which led me to offer the guidance that I did, thinking you were using one as well. It works well for us. https://marketplace.atlassian.com/apps/1216498/easy-links-for-jira?hosting=server&tab=overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think something like this should work for you:
issuetype = Car and issueFunction in linkedIssuesOf("PriceLevel ~ cheap","LINK_NAME")
where LINK_NAME is the type of link used to link these issue types (e.g "Is Model")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, thanks or answer but it doesn’t work, Model is not a link but a custom field created using ScriptRunner addon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.