jira-client
jira-client copied to clipboard
How do we get the total number of issues from JIRA account?
+1
As per my logic this would take extensive processing on JIRA server as there is no API available for this. Sudo code :
getTotalNumOfIssues ( ) { // fetch all projects [API is available] // fetch all issues of a project [API is available] // iterate over each project and keep counting number of issues // return count }