2019-07-30 13:06:43 +02:00

13 lines
254 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);
},
};