I want to do a search using the filter parameter of the OData v4 protocol using the contains operator.
In the code I write example?$filter=contains(name,'John').
But in the request this translates to contains(Customers%2C%20%27Victoria%27)
Doing so causes the call to fail.
Is it my mistake because I should make the quotes not convert to %27 or should it also work with the character encoding in %27?