Reputation: 221
I have a mastedata entry like the following:
<update key="100441337" group="G1" filter1="08243"
When I execute a queryMasterdata with filter object:
"and":
"op": "like"
"col": "filter1"
"value": "08"
It is not returning the value, anybody knows why?
Upvotes: 4
Views: 65
Reputation: 608
"value": "%08%"
... will do the trick. For like searches the % "wildcards" have to be used
Upvotes: 1