mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 13:02:42 +00:00
18 lines
419 B
JavaScript
18 lines
419 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/guides/services.html#core-services)
|
|
* to customize this service
|
|
*/
|
|
|
|
module.exports = {
|
|
find(params) {
|
|
// return strapi.query('article').find(params, {
|
|
// manyTags: () => {},
|
|
// ['linkedTags.linkedArticles.pic']: () => {},
|
|
// });
|
|
|
|
return strapi.query('article').find(params, ['ingredients']);
|
|
},
|
|
};
|