use('EduvosLibrary');

// Insert books first
db.book.insertOne({
    ISBN: "978-001",
    title: "Database Systems",
    publicationYear: 2022
});

db.book.insertOne({
    ISBN: "978-002",
    title: "Introduction to Programming",
    publicationYear: 2027
});

// Now query books published after 2026
print('Books published after 2026:');
db.book.find(
    { publicationYear: { $gt: 2026 } }
).forEach(book => print(JSON.stringify(book)));

Embed on website

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