module.exports = { find: ctx => { return strapi.query('person').find(ctx.query, [ { path: 'address', populate: { path: 'contacts', }, }, ]); }, };