8 lines
225 B
JavaScript
Raw Normal View History

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