print("\n=== Books Published After 2026 ===");
db.Book.find({
    publicationYear: { $gt: 2026 }
}).pretty();

print("\n=== Books Published in 2025 or Later (For Testing) ===");
db.Book.find({
    publicationYear: { $gte: 2025 }
}).pretty();

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: