I want to query a condition that include & in salesforce using rest API.
Eg:
{{instance_url}}/services/data/v55.0/queryAll?q=SELECT+FIELDS(STANDARD)+FROM+Case+WHERE+Status+IN+('Started','In Progress & Review','Completed')
It splitting the query by &. So I changed & to %26
(url encoded of &), now the Salesforce not identified its status.