hi, im trying to do a cases search with cases/search api, my query body is this:
{
"query": "primaryName=='google'",
"detailLevel": "CASE_AND_RESULTS_AND_AGGREGATED_RESULTS",
"sort": [
{
"columnName": "creationDate",
"order": "DESCENDING"
}
],
"pagination": {
"itemsPerPage": 25,
"pageReference": null
}
}
the problem is that this is a fussy search, it will return results with similar cases like 'google llc', 'google Ireland', 'google ltd', 'GOOGLE ASIA PACIFIC PTE LTD' etc, but we want exact search so that only cases for 'google' are returned, how can we achieve this?