In MongoDB, I have a field in a document that looks as shown below:
curOrg: { type: mongoose.Schema.Types.ObjectId, ref: "Org" },
This field is present and works as expected in my code, however, if I open the MongoDB Compass, the field is not present in the document.
Does anyone know why, or what do I need to do so the field does show in MongoDB Compass, please? Thanks!