I have a question about query crm objects when the value of the specific property contains special characters. In this case it's ampersand (&). I have custom property, which is multiple checkboxes type, and one of the value is "Disinfectants & Solutions" - so it contains whitespaces and ampersand:
In the module on the page user can filter products by this property. And it works fine for values without special characters. But for this value with ampresand it always returns 0 results even when there are products with these values assigned. My code is this:
The final query is: "limit=100&offset=0&emea__eu____product_line__contains=Disinfectants & Solutions" and it returnes 0 results. The query for other value like this: "limit=100&offset=0&emea__eu____product_line__contains=Mops" works fine and return the correct rows collection.
Is there a way to query for the value with the special characters in it and get correct results?