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...
we changed a master page name from au-op to auop. now we want to display the new page name(auop) in redirect links, cta links, jcr:content & respective fields with it but they are displaying the old name(au-op). we cannot change manually all the fields. we want to change with groovy script.