Say I have a collection with records structured like so:
<m:m xmlns:m="http://www.m.com/">
<m:data>
<z:term xmlns:z="http://z.come/schema/index.html#">
<z:name>abcd</z:name>
<z:id>123456789</z:id>
......
And then I want to select records where z:id = whatever or z:name = whatever. How can I do this with queryBuilder?
I've been able to successfully make such queries when there is no namespace. With the namespaces it doesn't seem to work the same way.