美文网首页
2021-11-01

2021-11-01

作者: 谭小仙 | 来源:发表于2021-11-01 10:28 被阅读0次

GraphQL

db.groups.aggregate([

// {$match: {"_id": ObjectId("613a0053620e4a5a3f041de0")}},

 {$match:{$and:[{_id:{$in:[ObjectId("613a0053620e4a5a3f041de0"),ObjectId("613a1fb0e7f699352ad114cf")]}},{deleted:false},{parent:{$nin:[ObjectId("613a0053620e4a5a3f041de0"),ObjectId("613a1fb0e7f699352ad114cf")]}}]}},

 {$graphLookup:{from:"groups",startWith:"$_id",connectFromField:"_id",as:"children",connectToField:"parent"}},

// {$lookup:{from:"usergroups",localField:"_id",foreignField:"groupId",as:"userGroup"}},

]);

db.groups.aggregate([

    {$match:{_id:ObjectId("613a1fb0e7f699352ad114cf")}},

    {$graphLookup:{from:"groups",startWith:"$_id",connectFromField:"_id",as:"children",connectToField:"parent"}},

    {$graphLookup:{from:"groups",startWith:"$_id",connectFromField:"parent",as:"hierarchy",connectToField:"_id"}},

    {$lookup:{from:"evalstages",localField:"hierarchy._id",foreignField:"group",as:"evalStages"}},

]);

db.groups.aggregate([

    {$match:{_id:ObjectId("613a1fb0e7f699352ad114cf")}},

    {$graphLookup:{from:"groups",startWith:"$_id",connectFromField:"parent",connectToField:"_id",as:"hierarchy"}},

    {$lookup:{from:"usergroups",localField:"hierarchy._id",foreignField:"groupId",as:"userGroups"}},

    {$lookup:{from:"schoolusers",localField:"userGroups.userId",foreignField:"_id",as:"users"}},

    {$unwind:"$userGroups"}, 

    {$match:{"userGroups.userId":ObjectId("614c185bb8e8446d027cb2ab")}},

    {$replaceRoot:{newRoot:"$userGroups"}}

]);

db.groups.aggregate([

    {$match:{_id:ObjectId("613aa38f7183897ace14a097")}},

    {$graphLookup:{from:"groups",startWith:"$_id",connectFromField:"parent",as:"hierarchy",connectToField:"_id"}},

    {$lookup:{from:"usergroups",localField:"hierarchy._id",foreignField:"groupId",as:"groups"}},

    {$match:{"groups.userId":ObjectId("613ffcdd6ecf6f293d7d5072")}},

    {$project:{

        "groups.roleType":1,

        "groups.userId":1

    }}

]);

db.getCollection('messages').find({"authorId": { $all: ["614c39a5db1a041ec0ae4624"] }})

db.messages.aggregate([

    {$lookup:{from:"schoolusers",localField:"authorId",foreignField:"_id",as:"authors"}}, 

    {$unwind: "$authors"}, 

    {$project: { "_id": 1, "commentId": 1, "authorId": 1, "authorType": 1, "text":1, "attachments":1, "authorName": "$authors.name" } }

]);

相关文章

  • 国学:我们今天怎么学习《论语》(三)?| 吴守立国学智慧日记第5

    我们今天怎么学习《论语》(三)?| 吴守立国学智慧日记第5天 原创2021-11-01 11:27·吴守立国学智慧...

  • 2021-11-07 思考成长周复盘

    一 时间 2021-11-01 ~ 2021-11-07 二 围绕精力提升所做的事情 五点早起,读书学习 简书日更...

  • 凛冬肆虐

    2021-11-01 多云 周一 疫情这一阵似乎又有些抬头。而这次,波及的范围很广,涉及到了14个省...

  • 评量问句

    2021-11-01 坚持分享第1128天 读书打卡第968天 评量问句。一般出现在成功进行了奇迹问句的描述后,接...

  • 疫情防御不松懈

    2021-11-01 周一 晴 今天周一,最高气温23度,有点热。早上出门没有碰见自行车,所以步行10分钟到了...

  • 《2021科幻稿、科幻小说投稿指南》2021-11-01更新(总

    《2021科幻稿、科幻小说投稿指南》2021-11-01更新(总奖金已超795万元人民币) 科幻爱好者投稿指南 |...

  • 半年来遭锁定的那些文章题目

    不经意一看,今天是2021-11-01,略略有点新开始的意思。 昨日在《简书》,惹了些不高兴。是这样:先投了一篇《...

  • 57/100 有产出地工作

    2021-11-01 收听了笑来老师的昨天晚上的《相约七年后》分享,感受到了对沉浸有了更深入理解。结合自身的工作,...

  • 2021-11-01

    我不知为何,今天凌晨会因为想解决我们两之间的矛盾而失眠。我好像是在纠结为什么大多时候闹矛盾都是我在主动去解决问题?...

  • 2021-11-01

    现在很多人生活在苦海,而我们的祖先生活在幸福中,这其中的差别就是生活的智慧不一样,清三界,性子清孝父亲,心干净孝母...

网友评论

      本文标题:2021-11-01

      本文链接:https://www.haomeiwen.com/subject/yerzaltx.html