2021-09-10 10:24:33 +02:00

8 lines
222 B
JavaScript

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