mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"mongodb": {
|
|
"label": {
|
|
"host": "Host",
|
|
"topology":"Connection topology",
|
|
"connectOptions":"Connect options",
|
|
"port": "Port",
|
|
"database": "Database",
|
|
"username": "Username",
|
|
"password": "Password",
|
|
"server": "Server",
|
|
"collection": "Collection",
|
|
"operation": "Operation",
|
|
"onlystore": "Only store msg.payload object",
|
|
"createnew": "Create a new document if no match found",
|
|
"updateall": "Update all matching documents"
|
|
},
|
|
"operation": {
|
|
"save": "save",
|
|
"insert": "insert",
|
|
"update": "update",
|
|
"remove": "remove",
|
|
"find": "find",
|
|
"count": "count",
|
|
"aggregate": "aggregate"
|
|
},
|
|
"status": {
|
|
"connecting": "connecting",
|
|
"connected": "connected",
|
|
"error": "error"
|
|
},
|
|
"tip": "<b> Tip:</b> If no collection is set, ensure <code>msg.collection</code> will contain the collection name",
|
|
"errors": {
|
|
"nocollection": "No collection defined",
|
|
"missingconfig": "missing mongodb configuration"
|
|
}
|
|
}
|
|
}
|