« Jira » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
|||
(Une version intermédiaire par le même utilisateur non affichée) | |||
Ligne 1 : | Ligne 1 : | ||
= Links = | = Links = | ||
* [https:// | * [https://confluence.atlassian.com/jira061/jira-user-s-guide/searching-for-issues/advanced-searching Advanced Searching] | ||
= JQL search = | = JQL search = | ||
<kode lang='jql'> | <kode lang='jql'> | ||
project=MyProject AND status not in (DONE, RESOLVED, CLOSED) AND issuetype not in subtaskIssueTypes() ORDER BY status | project=MyProject | ||
AND status not in (DONE, RESOLVED, CLOSED) | |||
AND issuetype not in subtaskIssueTypes() -- only parent tasks | |||
ORDER BY status | |||
</kode> | </kode> |
Dernière version du 2 février 2023 à 10:49
Links
JQL search
project=MyProject AND status not in (DONE, RESOLVED, CLOSED) AND issuetype not in subtaskIssueTypes() -- only parent tasks ORDER BY status |