2021-11-17 17:59:00 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json-schema.org/",
|
|
|
|
|
"$id": "https://tooljet.io/dataqueries/Mongodb.schema.json",
|
|
|
|
|
"title": "Mongodb datasource",
|
|
|
|
|
"description": "A schema defining Mongodb datasource",
|
|
|
|
|
"type": "object",
|
2021-11-22 08:22:32 +00:00
|
|
|
"defaults": {
|
|
|
|
|
"document": "{ }"
|
|
|
|
|
},
|
2021-11-17 17:59:00 +00:00
|
|
|
"properties": {
|
|
|
|
|
"operation": {
|
|
|
|
|
"$label": "Operation",
|
|
|
|
|
"$key": "operation",
|
|
|
|
|
"type": "dropdown-component-flip",
|
|
|
|
|
"description": "Single select dropdown for operation",
|
|
|
|
|
"$options": [
|
|
|
|
|
{ "name": "List collections", "value": "list_collections" },
|
|
|
|
|
{ "name": "Insert one document", "value": "insert_one" },
|
|
|
|
|
{ "name": "Insert many documents", "value": "insert_many" }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"insert_one": {
|
|
|
|
|
"collection": {
|
|
|
|
|
"$label": "Collection",
|
|
|
|
|
"$key": "collection",
|
|
|
|
|
"type": "codehinter",
|
|
|
|
|
"lineNumbers": false,
|
|
|
|
|
"description": "Enter collection"
|
|
|
|
|
},
|
|
|
|
|
"document": {
|
|
|
|
|
"$label": "Document",
|
|
|
|
|
"$key": "document",
|
|
|
|
|
"type": "codehinter",
|
|
|
|
|
"mode": "javascript",
|
|
|
|
|
"placeholder": "{ 'name': 'Steve', 'hobbies': [ 'hiking', 'tennis', 'fly fishing' ] }",
|
2021-11-21 04:14:26 +00:00
|
|
|
"description": "Enter document",
|
|
|
|
|
"height": "150px"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"insert_many": {
|
|
|
|
|
"collection": {
|
|
|
|
|
"$label": "Collection",
|
|
|
|
|
"$key": "collection",
|
|
|
|
|
"type": "codehinter",
|
|
|
|
|
"lineNumbers": false,
|
|
|
|
|
"description": "Enter collection"
|
|
|
|
|
},
|
|
|
|
|
"document": {
|
|
|
|
|
"$label": "Documents",
|
|
|
|
|
"$key": "documents",
|
|
|
|
|
"type": "codehinter",
|
|
|
|
|
"mode": "javascript",
|
|
|
|
|
"placeholder": "[ { '_id': 1, 'name': 'Steve' }, { '_id': 2, 'name': 'Sally' } ]",
|
2021-11-21 04:14:26 +00:00
|
|
|
"description": "Enter document",
|
|
|
|
|
"height": "150px"
|
2021-11-17 17:59:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|