I am using jira-python client and trying to fetch all issues currently open in a project or component.
but while trying this it gives me error :
jira.search_issues('project=ABC and assignee != currentUser()',
startAt=0,
maxResults=0,
json_result=True)
This I am using to get the total number of issues currently associated with project & I get below error :
Warning (from warnings module):
File "C:\Program Files (x86)\Python36-32\lib\site-packages\jira\client.py", line 1744
warnings.warn('All issues cannot be fetched at once, when json_result parameter is set', Warning)
Warning: All issues cannot be fetched at once, when json_result parameter is set
Any idea can I proceed further to fetch all issues currently open (new status) in a project or component.