Select field from relation

await strapi
.query(‘api::notification.notification’)
.findOne({
where: { id : notificationId},
select: [‘title’,‘date’]
populate: {
home: {
select: [‘avatar’,‘name’],
},
guest:{
select: [‘avatar’]
},
});

try this one