The following code returning all jira's and taking more time. i want to get the total jira count faster, without jira details
jira.search_issues('project=PROJ and assignee != currentUser()')
From the following link we can get total count using JQL, How to do the same using jira-python. https://jira.atlassian.com/browse/JRA-29903
Tried following code by adding maxResults=0, but it is returning empty list instead of total jira count.
jira.search_issues('project=PROJ and assignee != currentUser()',
startAt = 0,
maxResults = 0)