18 lines
419 B
JavaScript
Raw Normal View History

2019-06-13 15:36:05 +02:00
'use strict';
/**
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/guides/services.html#core-services)
* to customize this service
*/
2019-07-29 18:00:01 +02:00
module.exports = {
find(params) {
// return strapi.query('article').find(params, {
// manyTags: () => {},
// ['linkedTags.linkedArticles.pic']: () => {},
// });
return strapi.query('article').find(params, ['ingredients']);
},
};