Files
ETAApi/scripts/playground.mongodb.js
2024-08-09 21:16:24 -06:00

15 lines
440 B
JavaScript

// MongoDB Playground
// Use Ctrl+Space inside a snippet or a string literal to trigger completions.
// The current database to use.
use('enrutaviaporte');
// Create a new document in the collection.
db.getCollection('notifications').insertOne({
"owner" : ObjectId("65eeadb8ed616b897ca4c4cd"),
"title":"Notification title",
"description":"Notification description",
"tag":"category",
"deleted":false
});