I am trying to sort the Content search model Result with creation_date attribute ID. is it possible to sort the contentSearchModel result with the when its created?
Example ( What I tried ) :
var ContentSearchModel = require('dw/content/ContentSearchModel');
var ContentSearch = new ContentSearchModel();
ContentSearch.setFolderID(folderID);
ContentSearch.setSortingCondition('creation_date', dw.catalog.SearchModel.SORT_DIRECTION_DESCENDING);
ContentSearch.search();
The requirement is to get the latest content asset created in the folder.
Thanks.
6 件のコメント