Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×I'm using the Jira-Python API to find issues that meet certain criteria. I'm trying to find issues where the field contents are not equal to {}. That field auto-populates with the curly braces when left blank, so there is no way around them. I've tried using the escape characters `\u007b \u007d`.
My query is as follows:
`status = Open AND "Information" !~ "\u007b \u007d"`
Error:
`The text query '{ }' for field 'Fulfillment Information' is not valid: probably your range query is incorrect.`
Is there any way to accomplish this?