Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
602 views
Welcome To Ask or Share your Answers For Others

1 Answer

You don't need query.

You will have to use the mongoose model instance of the User model of Users & Permissions plugin.

return strapi.plugins['users-permissions'].models.user.
  .findOne(user_id)
  .populate('profile');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...