// 1. Insert a test book published after 2026
db.book.insertOne({ "bookID": 103, "title": "Advanced Cybersecurity Principles", "genre": "Technology", "year": 2027 });
// 2. Run the required assignment query
db.book.find({ "year": { $gt: 2026 } });
// 1. Insert a test book published after 2026
db.book.insertOne({ "bookID": 103, "title": "Advanced Cybersecurity Principles", "genre": "Technology", "year": 2027 });
// 2. Run the required assignment query
db.book.find({ "year": { $gt: 2026 } });
To embed this project on your website, copy the following code and paste it into your website's HTML: