Hi,
I am trying to add a Display view query for a field where it's populating on the basis of the project.
Elements Connect configuration query :
#if ($issue.project == "ABC")
issuetype in (Story,Task,Epic) AND project ="ABC" AND status!= Withdrawn
#elseif ($issue.project == "XYZ")
issuetype in (Story,Task,Epic) AND project ="XYZ" AND status!= Withdrawn
#end
How can i add the Display view query ?
Hi @Sruthi Biju
Your query seems correct and will work on a display view.
Display views can be configured only for live fields, is it your case?
Could you please send me a screenshot of your edit view? You can hide any confidential information on it.
A piece of advice, you can optimize your query as follows:
issuetype in (Story, Task, Epic) AND project = $issue.project AND status != Withdrawn
If you still encounter, feel free to open a ticket on our support portal.
Best,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.