$lookup when foreignField is array
问题 I have 2 collections, the first storing the animes watched by each user, their status etc: const listSchema = mongoose.Schema({ user: { type: Schema.Types.ObjectId, ref: 'user' }, animes: [{ _id: false, anime: { type: Schema.Types.ObjectId, ref: 'anime', unique: true }, status: String, episodes: Number, rating: Number }] }); and the second storing all animes and the relevant information. I want to show that second collection but adding status and episodes fields that are filled from the list