I am querying contenful with following call:
space.getEntries({ content_type: contentTypeId, order: '-sys.createdAt', skip: 0}).catch(function(gerror) {
return gerror;
}).then(function(entries) {
console.log(entries);
});
But i am getting sys object in the response instead of full object which contains asset url etc.
Any help is appreciated. Thanks