使用 REST 排除 JIRA JQL 搜索的属性 API
Excluding properies for JIRA JQL search using REST API
我正在为 jql search 使用 JIRA rest api。它说我们可以使用 fields
参数过滤掉字段。有没有一种方法可以从特定字段中过滤掉属性。例如。 field assignee
有很多属性。但我只对 属性 displayName
感兴趣。有没有办法过滤掉所有其他属性?
JQL 将搜索受让人字段内的所有属性以检查是否匹配。因此它应该开箱即用,例如 assignee = "John Smith"
,在本例中 John Smith 是显示名称。
Is there a way we can filter out all other properties?
无法隐藏受让人的其他属性。
我正在为 jql search 使用 JIRA rest api。它说我们可以使用 fields
参数过滤掉字段。有没有一种方法可以从特定字段中过滤掉属性。例如。 field assignee
有很多属性。但我只对 属性 displayName
感兴趣。有没有办法过滤掉所有其他属性?
JQL 将搜索受让人字段内的所有属性以检查是否匹配。因此它应该开箱即用,例如 assignee = "John Smith"
,在本例中 John Smith 是显示名称。
Is there a way we can filter out all other properties?
无法隐藏受让人的其他属性。