我有以下预定的触发代码:
exports = function() {
const collection = context.services.get("Cluster0").db("mydb").collection("meetings");
const meeting = collection.findOne({ _id: "5dc082c4dc4c715dc8bfcfa7" });
return meeting.description; };
尽管存在具有_id的记录,触发器仍会返回
> result: { "$undefined": true }
关于代码有什么问题的任何建议吗?