JQL过滤器匹配积压包括订单
JQL filter matching backlog including order
我需要一个 JQL 过滤器来匹配积压中的内容,并且与积压具有相同的顺序。
我和我的产品负责人订购了所有积压订单,我需要我的过滤器来反映这一点。
我当前尝试的项目数量是积压工作的大约五倍半...900 vs 159 实际积压项目
project="Project Name" AND issuetype != Epic AND (Sprint is EMPTY OR Sprint not in (openSprints(), futureSprints())) and status != Closed Order by RANK
顺序也不正确。
如何筛选项目以匹配积压的项目并显示相同的订单?
如果您检查看板的配置,它会有一些过滤器设置,指定哪些问题必须显示在您的看板上和积压工作。文档可用 here。屏幕看起来像这样:
使用 Saved Filter 和 Filter Query 字段的内容,您应该能够构建与您的积压工作相匹配的 JQL 查询。 Ranking 字段指定问题的排序方式,但通常这是通过它们的 Rank 完成的,您已经在 JQL 中使用了它。您可以添加 ASC 或 DESC 来更改顺序的方向,即。 ORDER BY RANK DESC
.
这些规则决定了哪些问题在您的董事会的积压工作中可见:
An issue will only be visible in the Backlog if:
- the issue is not a Sub-Task,
- the issue matches the board's Saved Filter (see Configuring Filters),
- the issue's status maps to one of the board's columns (but not the 'Done' column), and
- there is at least a status being mapped to the right most column. Eg. If you have the columns To Do, In Progress , and Done, ensure that you have a status mapped to In Progress at least. If you map all the statuses to the first column (To Do), you will not be able to see any issues in the Backlog.
这是取自这个documentation page。
这是对我有用的答案
project = <your project> AND issuetype in (task, "Task ", Story, Improvement, Improvements, Research, Bug, Incident) AND status not in
(Done, CANCELLED, Closed) AND (Sprint in (futureSprints()) OR Sprint
is EMPTY) ORDER BY rank
根据您的项目更改了参数。
按排名排序 - 为您提供您在积压工作中看到的顺序
干杯
我需要一个 JQL 过滤器来匹配积压中的内容,并且与积压具有相同的顺序。
我和我的产品负责人订购了所有积压订单,我需要我的过滤器来反映这一点。
我当前尝试的项目数量是积压工作的大约五倍半...900 vs 159 实际积压项目
project="Project Name" AND issuetype != Epic AND (Sprint is EMPTY OR Sprint not in (openSprints(), futureSprints())) and status != Closed Order by RANK
顺序也不正确。
如何筛选项目以匹配积压的项目并显示相同的订单?
如果您检查看板的配置,它会有一些过滤器设置,指定哪些问题必须显示在您的看板上和积压工作。文档可用 here。屏幕看起来像这样:
使用 Saved Filter 和 Filter Query 字段的内容,您应该能够构建与您的积压工作相匹配的 JQL 查询。 Ranking 字段指定问题的排序方式,但通常这是通过它们的 Rank 完成的,您已经在 JQL 中使用了它。您可以添加 ASC 或 DESC 来更改顺序的方向,即。 ORDER BY RANK DESC
.
这些规则决定了哪些问题在您的董事会的积压工作中可见:
An issue will only be visible in the Backlog if:
- the issue is not a Sub-Task,
- the issue matches the board's Saved Filter (see Configuring Filters),
- the issue's status maps to one of the board's columns (but not the 'Done' column), and
- there is at least a status being mapped to the right most column. Eg. If you have the columns To Do, In Progress , and Done, ensure that you have a status mapped to In Progress at least. If you map all the statuses to the first column (To Do), you will not be able to see any issues in the Backlog.
这是取自这个documentation page。
这是对我有用的答案
project = <your project> AND issuetype in (task, "Task ", Story, Improvement, Improvements, Research, Bug, Incident) AND status not in (Done, CANCELLED, Closed) AND (Sprint in (futureSprints()) OR Sprint is EMPTY) ORDER BY rank
根据您的项目更改了参数。
按排名排序 - 为您提供您在积压工作中看到的顺序
干杯