美文网首页
MongoDB移动Wekan看板内容到另一个看板

MongoDB移动Wekan看板内容到另一个看板

作者: Rickywu1113 | 来源:发表于2019-01-23 16:38 被阅读0次
db.getCollection('cards').update(
    // query 
    {
    "listId" : "fBzXxdzCuqDcKn54c",
    "boardId" : "KqDv6vpBFJjnzY7iD",
    "swimlaneId" : "uRfnzqYu5Bf25PJPE",
    },
    
    // update 
    {$set:{
    "listId" : "hiDhQ43os32ddNb4p",
    "boardId" : "dXAhigdiB5xNtupNi",
    "swimlaneId" : "GAPYFJXEFsFdSvHq4",        
    }},
    
    // options 
    {
        "multi" : true,  // update only one document 
        "upsert" : false  // insert a new document, if no existing document match the query 
    }
);

相关文章

网友评论

      本文标题:MongoDB移动Wekan看板内容到另一个看板

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