例如,我想在 mongodb 中拆分我的长查询,而不是在以下代码中使用 db.users.find(q),我想使用像这样的连接版本 db.users.find(q0+q1) 或任何其他方式我可以将 q 拆分为两个查询
q= {},{name:1,"education.school.name":1,"education.type":1}
db.users.find(q)
q0={}
q1={name:1,"education.school.name":1,"education.type":1}
q=q0+","+q1
db.users.find(q)
我该怎么做这样的事情?