Skip to content

Instantly share code, notes, and snippets.

View andredubov's full-sized avatar

Andrei Dubov andredubov

  • 20:43 (UTC +04:00)
View GitHub Profile
@andredubov
andredubov / mongodb-playground.js
Last active August 28, 2025 04:51
Seed data for a MongoDB "parts" collection. Contains 4 sample entries for spaceship parts with full attributes.
// The current database to use.
use("inventory");
// Документ 1: Двигатель - Main Engine Thruster
db.getCollection("parts").insertOne({
_id: "f8e7d6c5-4b3a-2c1d-9f0e-8d7c6b5a4f3e",
name: "Main Engine Thruster",
description: "High-efficiency plasma thruster for interplanetary travel",
price: 125000.99,
stockQuantity: 5,