Hi, Karel
I found the temporary solution, here the example:
const entry = await strapi.db.query(/* past here your collection uid*/).findOne({
select: [/* past here fields you need*/],
where: { id: event.result.id },
populate: { /*here you can populate of any fields*/ },
});