nested json in xquery with cts:and-query
In json request, there is a field
"aliasTerms":[["abc1","abc"],["xyz","xyz1"],["def","def1","def2"]]
Now I have requirement to build a word query on title json field that would do
cts-and-query((
cts:or-query("abc1","abc"),
cts:or-query("xyz","xyz1"),
ct...