Database

db={"books":[{_id:ObjectId("625efa44f1ba751c8275ea51"),contributors:[ObjectId("625efa44f1ba751c8275ea52"),ObjectId("625efa44f1ba751c8275ea53")]/**other fields*/}],"users":[{_id:ObjectId("625efa44f1ba751c8275ea52"),first_name:"Luigi"/**many other fields*/},{_id:ObjectId("625efa44f1ba751c8275ea53"),first_name:"Mario"/**many other fields*/}]}

Query

db.books.aggregate([{"$lookup":{"from":"users","localField":"contributors","foreignField":"_id","as":"contributors"}}])

Result