JQL issue property contains phrase is not working

Hi!

I’m trying to search issues using JQL by an issue property that contains an exact phrase:

issue.property[my-property].content ~ "\"hello world\""

The rest request looks like this:

/rest/api/3/search?jql=issue.property[my-property].content%20~%20"\"hello%20world\""

But it gives me an Internal server error.

It also errors without escaping the quotes, like this:

issue.property[my-property].content ~ "hello world"

This is something that used to work before. Did something change? Anyone can help me to make this work?

1 Like

Hi @HelderAlves ,

What happens if you URL encode the JQL as follows:

issue.property%5Bmy-property%5D.content%20~%20%22%5C%22hello%20world%5C%22%22

Regards,
Dugald

Hi @dmorrow. Thank you for the quick reply.

Good news. Somehow it started working again without changing on my side.