1. 条件查询 假设我们需要查询年龄大于等于 18 岁的用户记录: // 云函数入口函数 exports.main = async (event, context) => {const { minAge } = event; // 从事件中获取用户提供的最小年龄try {<