Displaying epics and their user stories, sub-tasks, and chores #546
Replies: 3 comments 2 replies
-
To clarify, this need is a result of not having all the bells and whistles but those insights are needed today? I am asking because it looks like there is an opportunity to use and issueFunction and recursive links (Depth: 3-4) query. This approach allows you to query from the highest issuetype, and tends to clean up faster than data queried at the middle tier queries. |
Beta Was this translation helpful? Give feedback.
-
In TUI you can do #!/usr/bin/env bash
epics=$(jira epic list -lMY_TAG --table --plain --no-headers --columns TYPE,KEY,SUMMARY,STATUS)
echo "${epics}" | while IFS=$'\t' read -r line; do
key=$(echo "${line}" | awk '{print $2}')
issues=$(jira epic list $key --plain --no-headers --columns TYPE,KEY,SUMMARY,STATUS 2>/dev/null)
printf "%s\n" "${line}"
echo "${issues}" | while IFS=$'\t' read -r issue; do
printf " - %s\n" "${issue}"
done
done
|
Beta Was this translation helpful? Give feedback.
-
I forgot to respond to this:
|
Beta Was this translation helpful? Give feedback.
-
I can find the epics of interest to me with
jira epic list -lMY_TAG --table --plain
.Is there a way to see the whole tree?
Maybe there are more sub-tasks, more levels, but this would give me a nice view of everything my team is doing right now.
Beta Was this translation helpful? Give feedback.
All reactions