Pulling labels onto Python Report

Darnell Nance September 1, 2020

Good Morning,

My python script uses a JQL query a couple functions to export Jira data to a csv file.  I'm currently able to pull all fields accept "Labels."  Customfield_11702 seems to be right.  Any advice on why label fields are showing None? 

'project in (PIZ, PI) AND issuetype in ("Defect ", Deployment, Story, Task) AND status in (Open, "Tech Design", Ready, "In Progress", "Code Review", "Dev Complete", "Test in Progress", Done, "In Prod", "ready for deployment", "On Hold", Dev, QA, Analysis, "On Hold/Waiting for Partner") AND assignee in (**email addresses redacted) ORDER BY key ASC',

 

If I run the JQL below in Jira label values are returned in Jira: 

Project in (PIZ, PI) AND labels is not EMPTY AND createdDate >= startOfYear()

1 answer

0 votes
Gonchik Tsymzhitov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 27, 2021

Please, put as expand field labels

https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L638

 

Then you can start to see that info

Suggest an answer

Log in or Sign up to answer