cancel
Showing results for 
Search instead for 
Did you mean: 

CMIS Property

sanjaybandhaniya
Elite Collaborator
Elite Collaborator

Is cmis:description property available in latest alfresco?

if yes, then how can I add and get using cmis query?

1 REPLY 1

angelborroy
Community Manager Community Manager
Community Manager

The property cm:description is part of the cm:titled aspect.

https://github.com/Alfresco/alfresco-repository/blob/master/src/main/resources/alfresco/model/conten...

It's required to join this aspect to the CMIS Query in order to get properties from a different type/aspect than default.

SELECT T.cm:description 
FROM cmis:document as D 
JOIN cm:titled as T on D.cmis:objectId=T.cmis:objectId
Hyland Developer Evangelist