Hello, everyone,
since the "Epic Link" field has been replaced by the "Parent" field, is there any way to retrieve the "Epic Link.Name" field (customfield_10008.Name)?
I use the Jira Cloud fo Sheet extension and it would be great to continue to see the association of the Task to the Epic by seeing both the Key and the Name of the Epic.
Unfortunately the Epic Name field (customfield_10005) only appears in the Epic.
Please let me know what you think.
Thank you very much
Can you try use a JQL (Jira Query Language) query to retrieve the Epic Name along with the task. In Jira, the Epic Name is often stored in a custom field, which you've identified as customfield_10005.
Your query might look something like this:
"project = YOUR_PROJECT_KEY AND issuetype = Epic"
This query should retrieve all Epics in your project. You can then extend this query to include specific fields like the Epic Name.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.