preform jira rest api 使用 maxresults 参数搜索
preform jira rest api search with maxresults parameter
我想使用 Jira REST API 和 JQL 查询执行搜索,但我不希望我的结果受到限制。所以如果有100个问题,结果会出现100个问题,如果有x个问题,结果会出现x个问题。
我该怎么做?
例如这个查询:
https://"your_jira_gome"/rest/api/2/search?jql=project = "A"
根据 JIRA REST API 文档,有一个 maxResults URL 参数:
maxResults
int
the maximum number of issues to return (defaults to 50). The maximum allowable value is dictated by the JIRA property 'jira.search.views.default.max'. If you specify a value that is higher than this number, your search results will be truncated.
我想使用 Jira REST API 和 JQL 查询执行搜索,但我不希望我的结果受到限制。所以如果有100个问题,结果会出现100个问题,如果有x个问题,结果会出现x个问题。
我该怎么做?
例如这个查询:
https://"your_jira_gome"/rest/api/2/search?jql=project = "A"
根据 JIRA REST API 文档,有一个 maxResults URL 参数:
maxResults
int
the maximum number of issues to return (defaults to 50). The maximum allowable value is dictated by the JIRA property 'jira.search.views.default.max'. If you specify a value that is higher than this number, your search results will be truncated.