How can we do case insensitive search for path range queries? I want to make case insensitive search for path:
/pathSyntax = (case insensitive value of $Type)
Sample Query Format for Path range search , I need to make this path range query search as case insensitive :, do I need to make changes in Indexes also created for it?
let $xyz:= cts:and-query((
cts:collection-query(concat("xyz://", val, "/test")),
cts:path-range-query("/pathSyntax", "=",$Type)
))
Below is range path index :
{
"scalar-type": "string",
"path-expression": "/pathSyntax",
"collation": "http://marklogic.com/collation/",
"range-value-positions": false,
"invalid-values": "reject"
},