10 lines
239 B
JavaScript

'use strict';
module.exports = ({ strapi }) => ({
buildDynamicZoneResolver({ contentTypeUID, attributeName }) {
return async parent => {
return strapi.entityService.load(contentTypeUID, parent, attributeName);
};
},
});