I'm trying to retrieve all issues containing the summary prefix "issuing-dashboard-ui". I'm running the following query:
project = RELEASE AND status = Done AND summary ~ "issuing-dashboard-ui*" ORDER BY created DESC
Against the following dataset
- issuing-dashboard-search-system-6.4.3
- issuing-dashboard-ui-1.98.17
- issuing-dashboard-api-2.90.4
- issuing-dashboard-ui-1.98.17
However, I'm retrieving no results.
When I try to replace the hyphens "-" with a single character wildcard "?" such as
project = RELEASE AND status = Done AND summary ~ "issuing?dashboard?ui*" ORDER BY created DESC
I then retrieve all the dataset not filtered for "ui". It looks like my cloud instance of JIRA doesn't support STARTS WITH or LIKE as described in the docs. I've also tried to escape the hyphen but without any luck.
Could you please point me in the right direction? Many thanks for your help.