How to display child issues of an issue from epics list ? #232
-
|
Hi, Thank you for this cli! I'm discovering all its features and it looks great. I have one question : When you display all epics with and you switch to the right pane and you select one issue, how to display child issues related to this issue ? |
Beta Was this translation helpful? Give feedback.
Answered by
ankitpokhrel
Dec 20, 2021
Replies: 1 comment 1 reply
-
|
Hi @davidjulien you can use # Get sub-tasks of a task
jira issue list --parent KEY-123If you want to get list of issues in a particular epic, you can do: # Get items in an epic
jira epic list EPIC-123 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
davidjulien
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @davidjulien you can use
parentfilter to get child issues. However, it needs to be a new command and is not possible from the TUI at the moment.# Get sub-tasks of a task jira issue list --parent KEY-123If you want to get list of issues in a particular epic, you can do:
# Get items in an epic jira epic list EPIC-123