Solved
curl command - how to set MULTI VALUE property (like String [])
Hi all,
I am using CURL command to create pages in CQ. This page node has property which takes Multi Value. So in CRX I can see its type is coming as "String[]" instead of just "String". When I use CURL command by default CURL sets everything to "String" . How do I pass the DATA TYPE of the property using CURL command or how do i set MULTI VALUE property using CURL command
curl -u admin:admin -F "jcr:primaryType=cq:Page" -F "jcr:content/jcr:primaryType=cq:PageContent" -F "jcr:content/jcr:title=New Page" -F "jcr:content/sling:resourceType=geometrixx/components/contentpage" -F "jcr:content/myMultiValue=value1,value2" http://localhost:4502/content/geometrixx/en/page