Hello @rhruby2, welcome to FCC forum. I believe mongoose documentation about find method might be helpful. I have never used mongoose of late but I believe what you want is how to pass the projection optional argument to specifically exclude certain fields. If adding "name friends" will return name and friends fields, then I believe "-name -friends" will exclude them. There are quite a number of different ways you can pass the projection parameter (That is what it is called ) to Model.find in mongoose. Find more from the official mongoose documentation linked above and perhaps the article below.
which did absolutely exclude the “_id” field. I still do not understand where that syntax is in the Mongoose documentation on Query Projection is though.
EDIT: Found it! This syntax is in the Query select() section: