I use the following query to sum the fields in the Linkissue :
and for that query, was successfully executed.
What if I want to add one more filter, with a specific value of a field, will the query form be like this?
{{ targetIssue | linkedIssues(["customfield_12529","customfield_12345","issuetype"]) | filter(["fields.issuetype.name","MoA Project"]) | filter (["Pengurangan"]) | sum("fields.customfield_12529") }}
customfield_12345 is a field of type : Select List (Single Choice)
Thanks in advance
this is the correct syntax:
{{ targetIssue | linkedIssues(["customfield_12529","customfield_12345","issuetype"]) | filter(["fields.issuetype.name","MoA Project"]) | filter (["fields.customfield_12345.value","Pengurangan"]) | sum("fields.customfield_12529") }}
Hi @David Fischer ,
So, I just need to add a query like this:
“fields.customfield_12345.value”
and I've tried the query, and it works!!!
by the way, is there any URL or documentation to learn this kind of thing? maybe like "JMWE Documentation"?
thank you very much once again, David
God bless you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Of course, there's a whole documentation, including a lot on Nunjucks, here: https://appfire.atlassian.net/wiki/spaces/JMWEC/overview
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.