I have a Notification
model which belongsToMany
users from users-permissions
plugin.
I have another model called Profile
which belongsToOne
user.
Now, I want to populate
the notification with related user
and their profile
...
I have tried:
await strapi.query("user", "users-permissions").find({_id: `model id`}).populate('profile')
Throwing Impossible to find the plugin where strapi.query has been called.
at me.
Also tried:
notification.user.populate('profile')
No luck either
I also tried strapi.plugins["users-permissions"].models.user
got undefined!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…