CMIS Property

cancel
Showing results for 
Search instead for 
Did you mean: 
sanjaybandhniya
Intermediate

CMIS Property

Is cmis:description property available in latest alfresco?

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

1 Reply
angelborroy
Alfresco Employee

Re: CMIS Property

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