Is there any example to add new child node through sling API calls?I am
able to manage below code snippets through some research but somehow it
doesn't work String file =
"/etc/acs-commons/lists/test/jcr:content/list"; Resource pageResource =
rr.getResource(file); Map prop = new HashMap<>();
prop.put("jcr:title","test"); prop.put("value","testvalue"); Resource
newr = rr.create(pageResource,"item3",prop);Thanks,