Buenas tardes comunidad, tengo un campo personalizado con cascada en epica historia y subtarea.
Estoy tratando de copiar el campo completo desde la epica hacia las distintas historias y solo me copia la informacion del primer valor y no el de la cascada. En JQL lo tengo de esta forma:
{ "update": { "customfield_10099": [ { "set": { "value": "{{triggerIssue.parent.fields.customfield_10099.value}}", "child": { "value": "{{triggerIssue.child.fields.customfield_10099.value}}" } } } ] } } } } ]}
Me falta algun dato para copiar tambien la informacion del cascadeo, me pueden ayudar?
Gracias!
Hi @Maximiliano Rojas could you please try below?
{
"update": {
"customfield_10099": [
{
"set": {
"value": "{{triggerIssue.parent.fields.customfield_10099.value}}",
"child": {
"value": "{{triggerIssue.parent.fields.customfield_10099.child.value}}"
}
}
}
]
}
}
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.