def statement = 'SELECT * from [nt:base] AS t where ISDESCENDANTNODE("/content/*") and contains(t.*, "cs-au-op")';def query = session.getWorkspace().getQueryManager().createQuery(statement, 'JCR-SQL2');def result = query.execute();int count=0;result.nodes.each { node ->String nodePath = node.path;de...