I am using Strapi's entity service to get data for all attributes including the relations attributes till the deepest relation.
But following is providing me the data of only one level deep relation's attributes. How can I get all the deepest relations attributes?
const entries = await strapi.entityService.findMany(api::name.name, {
populate: '*'
});