nyyManni / jiralib2

Lisp bindings to JIRA REST API (used by Ejira)
GNU General Public License v3.0
21 stars 21 forks source link

jirallib2-get-users does not fetch all users when there are more than 1000 #1

Closed jaminsore closed 4 years ago

jaminsore commented 4 years ago

FIrst, thank you for this project!

jirallib2-get-users fetches first 1000 rather than all users. This is preventing me from assigning an issue to myself or others not in the first 1000 listed. To fetch all users it is necessary to make multiple calls to the Jira REST API with startAt incrementing by maxResults until the length of the returned list of results is < 1000 (see this post).