diff --git a/packages/strapi-plugin-graphql/services/Query.js b/packages/strapi-plugin-graphql/services/Query.js index eb926522dd..7304537406 100644 --- a/packages/strapi-plugin-graphql/services/Query.js +++ b/packages/strapi-plugin-graphql/services/Query.js @@ -291,7 +291,7 @@ module.exports = { }); if (isController) { - const values = await resolver.call(null, ctx); + const values = await resolver.call(null, ctx, null, { populate: [] }); if (ctx.body) { return ctx.body;