Skip to content

Commit 72010e5

Browse files
gkowalcgonchik
authored andcommitted
Added warning ti get_project_issuekey_all function usage (#871)
get_project_issuekey_all(self, project, start=0, limit=None, expand=None): function by default doesn't specify any limitation with regards to number of returned results. However Even with limit=None flag API will return 50 maximum, when specific high limit number for example limit=200 only 100 results will be returned. This is due to the limitation on the JIRA CLOUD API side https://jira.atlassian.com/browse/JRACLOUD-67570 and https://community.atlassian.com/t5/Jira-Software-questions/Is-there-a-limit-to-the-number-of-quot-items-quot-returned-from/qaq-p/1317195.
1 parent eccebbf commit 72010e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/jira.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ Manage projects
113113
# Get last project issuekey
114114
jira.get_project_issuekey_last(project)
115115
116-
# Get all project issue keys
116+
# Get all project issue keys.
117+
# JIRA Cloud API can return up to 100 results in one API call. If your project has more than 100 issues see following community disussion: https://community.atlassian.com/t5/Jira-Software-questions/Is-there-a-limit-to-the-number-of-quot-items-quot-returned-from/qaq-p/1317195
117118
jira.get_project_issuekey_all(project)
118119
119120
# Get project issues count

0 commit comments

Comments
 (0)