Simple Alfresco Share CMIS query collection not working -
Simple Alfresco Share CMIS query collection not working -
i have simple cmis query executing within collection folder. purpose retrieve 2 specific documents placed in 2 different folders.
select d.* cmis:document d bring together ws:webasset w on w.cmis:objectid = d.cmis:objectid (d.cmis:name = 'name1.html' , in_folder(d,'${section:/root/folder1}')) or (d.cmis:name = 'name2.html' , in_folder(d,'${section:/root/folder2}')) i gave seek to:
select d.* cmis:document d bring together ws:webasset w on w.cmis:objectid = d.cmis:objectid (d.cmis:name = 'name1' or d.cmis:name = 'name2.html') , (in_folder(d,'${section:/root/folder1}') or in_folder(d,'${section:/root/folder2}')) but not retrieving documents. if executing (name1 in folder1) lone correctly retrieve document 'name1'. missing fundamental cmis language ?
related question: used execute type of query straight collection folder, due presence of in_folder() or in_tree() add-on of $section instruction, not working in node browser. there way execute in node browser ?
update typo error: queries above missing qualifier d, mandatory when there bring together in query. error, original query executing have qualifier.
you must utilize cmis object id in_folder. not take path. see spec @ http://docs.oasis-open.org/cmis/cmis/v1.1/os/cmis-v1.1-os.html
alfresco alfresco-share cmis
Comments
Post a Comment