Hi there Amit,You can sort the entries by their property: "jcr:created".The query for this (you can e.g. check in the debugger) would be: path=/content/mysite/ type=cq:Page orderby=@jcr:content/jcr:created orderby.sort=descOr if you want it in java code: Map map = new HashMap(); map.put("path", "/co...