Hello,I want to search the nodes on 2 different paths. For example -> /content/AA and /content/BB. The below query works fine SELECT p.* FROM [cq:PageContent] AS p WHERE ( ISDESCENDANTNODE(p,[/content/AA]) OR ISDESCENDANTNODE(p,[/content/BB]) ) AND ( CONTAINS(p.[cq:tags], ‘”testAA”) ) but throws the...