假设我有一个名为“自定义字段”的自定义字段,其ID为customfield_1111。
我知道我可以在jql中订购
project = ID and issueType = Project order by 'Custom Field' asc
有没有办法在不知道字段名称的情况下按ID排序?
project = ID and issueType = "issue type" order by customfield_1111 asc
project = ID and issueType = "issue type" order by getLabel('customfield_1111') asc
答案 0 :(得分:5)
是的,有办法做到这一点。
您可以按自定义字段名称或自定义字段ID(即JIRA自动分配给自定义字段的数字)进行搜索。
对你来说就是这样:
project = ID AND issueType = Bug ORDER BY "cf[CustomFieldID]" ASC
其中" cf [CustomFieldID]" =" cf [1111]"。
有关此内容的详情,请参阅此documentation