4

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?

Bohemian
  • 412,405
  • 93
  • 575
  • 722
Lucke
  • 221
  • 1
  • 4

1 Answers1

1
 "value": "%08%"

... will do the trick. For like searches the % "wildcards" have to be used

André Schäfer
  • 608
  • 5
  • 15