mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Add fineOne, fix insertMany
This commit is contained in:
@@ -21,9 +21,12 @@
|
||||
"insertOne": "insertOne",
|
||||
"insertMany": "insertMany",
|
||||
"update": "update",
|
||||
"updateOne": "updateOne",
|
||||
"updateMany": "updateMany",
|
||||
"remove": "remove",
|
||||
"deleteOne": "deleteOne",
|
||||
"deleteMany": "deleteMany",
|
||||
"findOne": "findOne",
|
||||
"find": "find",
|
||||
"count": "count",
|
||||
"aggregate": "aggregate"
|
||||
@@ -34,6 +37,7 @@
|
||||
"error": "error"
|
||||
},
|
||||
"tip": "<b> Tip:</b> If no collection is set, ensure <code>msg.collection</code> will contain the collection name",
|
||||
"insertMany-tips": "<b> Tip:</b> When using <code>insertMany</code> ensure your <code>msg.payload.values</code> is an array of objects that you want to insert.",
|
||||
"errors": {
|
||||
"nocollection": "No collection defined",
|
||||
"missingconfig": "missing mongodb configuration"
|
||||
|
||||
@@ -21,9 +21,12 @@
|
||||
"insertOne": "insertOne",
|
||||
"insertMany": "insertMany",
|
||||
"update": "update",
|
||||
"updateOne": "updateOne",
|
||||
"updateMany": "updateMany",
|
||||
"remove": "remove",
|
||||
"deleteOne": "deleteOne",
|
||||
"deleteMany": "deleteMany",
|
||||
"findOne": "findOne",
|
||||
"find": "find",
|
||||
"count": "count",
|
||||
"aggregate": "aggregate"
|
||||
@@ -34,6 +37,7 @@
|
||||
"error": "エラー"
|
||||
},
|
||||
"tip": "<b> Tip:</b> コレクションが設定されていない場合、 <code>msg.collection</code>がコレクション名として使われます。",
|
||||
"insertMany-tips": "<b> Tip:</b> 使用する場合 <code>insertMany</code> あなたの <code>msg.payload.values</code> 挿入するオブジェクトの配列です。",
|
||||
"errors": {
|
||||
"nocollection": "コレクションが定義されていません",
|
||||
"missingconfig": "mongodbの設定がみつかりません"
|
||||
|
||||
Reference in New Issue
Block a user