Let's suppose you want to retrieve list of pages based between current
time and 14 days based on some criteria then you could refer below
example - map.put("path", pagepath.trim());map.put("type",
FMConstants.CQ_PAGE_NODETYPE);map.put("1_group.daterange.property",
"jcr:content/expires");map.put("1_group.daterange.lowerBound",
getCurrentDate());map.put("2_group.relativedaterange.property",
"jcr:content/expires");map.put("2_group.relativedaterange.upperBound",
"14d");map.put("p.limit", "-1"); Plea...