Find query with _start and _limit

in case that anyone is looking for a full solution. This one works for Strapi v3.
//////////// put below code into services.js to extend your controller functionality:

‘use strict’;

const _ = require(‘lodash’);

module.exports = {
async find(params, populate) {
const results = await strapi.query(‘restaurant’).find({ …params, _limit: -1 }, populate);
return results;
},
};