我想递归地解析每个孩子的子孩子并将标志设置为孩子。是否可以使用mongo查询以及诸如“ $ graphLookup”之类的聚合函数来做到这一点
我是MongoDB的新手,但是我听说过聚合函数的使用,但是不确定是否可以使用mongo查询本身实现?
My Collections Structure : Parent | |---Child1 // Depth 1 | |---Sub child // Depth 2 | |---Sub Sub Child // Depth 3 ... ... |--- nth Child // Depth n |---Child 2 // Depth 1 | |---Sub child // Depth 2 | |---Sub Sub Child // Depth 3 ... ... |--- nth Child // Depth n