假设我有一个名为“ Custom Field”的自定义字段,其ID为customfield_1111。
我知道我可以在jql中订购
project = ID and issueType = Project order by 'Custom Field' asc
Run Code Online (Sandbox Code Playgroud)
有没有一种方法可以按ID排序而不知道字段名称?
project = ID and issueType = "issue type" order by customfield_1111 asc
project = ID and issueType = "issue type" order by getLabel('customfield_1111') asc
Run Code Online (Sandbox Code Playgroud)