db.Book.find(
    { publicationYear: { $gt: 2026 } },
    { 
        ISBN: 1, 
        title: 1, 
        publicationYear: 1, 
        authorID: 1,
        publisherID: 1,
        stock: 1,
        isAvailable: 1,
        price: 1,
        _id: 0 
    }
).pretty();

Embed on website

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