cancel
Showing results for 
Search instead for 
Did you mean: 

Get document comments by js or query

pjcaracuel_2349
Confirmed Champ
Confirmed Champ

Hi folks,

Any way to retrieve the comments of a document using javascript or query?

B.R.

1 ACCEPTED ANSWER

angelborroy
Community Manager Community Manager
Community Manager

Document comments type if fmSmiley Tongueost.

To get all the comments for the document /app:company_home/app:shared/cm:file.txt, you can run a query similar to the following one:

var def = 
{ 
    query: "TYPE:'fm:post' AND PATH:'/app:company_home/app:shared/cm:file.txt//*'", 
    language: "fts-alfresco", 
}; 

logger.log(search.query(def));
Hyland Developer Evangelist

View answer in original post

1 REPLY 1

angelborroy
Community Manager Community Manager
Community Manager

Document comments type if fmSmiley Tongueost.

To get all the comments for the document /app:company_home/app:shared/cm:file.txt, you can run a query similar to the following one:

var def = 
{ 
    query: "TYPE:'fm:post' AND PATH:'/app:company_home/app:shared/cm:file.txt//*'", 
    language: "fts-alfresco", 
}; 

logger.log(search.query(def));
Hyland Developer Evangelist