|
A cql query like `zip=4202` may be ambiguous when there are two such fields like address.home.zip and address.work.zip.
There are several possibilities how to resolve this:
- Take the first one (higher level, or alphabethical when same level: address.zip < adress.home.zip < address.work.zip)
- Take all of them using OR search.
- Throw an Exception.
Using indexes as suggested in DMOD-144 may resolve the ambiguity.
The requirements might be different for cql entered by some user in a search slot and cql generated by some source code.
|