// Insert sample Amazon-style product reviews
db.reviews.insertMany([
{
product_id: "iphone15pro",
product_title: "Apple iPhone 15 Pro",
review_text:
"Absolutely love this phone! The camera quality is incredible, especially in low light. The titanium build feels premium and the battery easily lasts all day. The Action Button is a nice touch. Only downside is the price, but you get what you pay for with Apple.",
rating: 5,
reviewer_name: "TechEnthusiast2024",
review_date: new Date("2024-10-15"),
verified_purchase: true,
helpful_votes: 23,
features_mentioned: ["camera", "battery", "titanium", "Action Button"],
sentiment: "positive",
},
{
product_id: "iphone15pro",
product_title: "Apple iPhone 15 Pro",
review_text:
"Camera is good but not revolutionary. Battery life is decent but nothing special. The phone feels nice but is way overpriced for what you get. Android flagships offer better value. Not impressed with iOS limitations either.",
rating: 3,
reviewer_name: "AndroidUser42",
review_date: new Date("2024-11-02"),
verified_purchase: true,
helpful_votes: 8,
features_mentioned: ["camera", "battery", "price", "iOS"],
sentiment: "neutral",
},
{
product_id: "galaxy_s24_ultra",
product_title: "Samsung Galaxy S24 Ultra",
review_text:
"The S Pen integration is fantastic for note-taking and creative work. Display is gorgeous and the camera zoom capabilities are unmatched. AI features are actually useful, especially for photo editing. Great phone for productivity.",
rating: 5,
reviewer_name: "ProductivityPro",
review_date: new Date("2024-09-28"),
verified_purchase: true,
helpful_votes: 15,
features_mentioned: ["S Pen", "display", "camera zoom", "AI features"],
sentiment: "positive",
},
{
product_id: "sony_wh1000xm5",
product_title: "Sony WH-1000XM5 Headphones",
review_text:
"These headphones are a game changer for my daily commute. Noise cancellation is outstanding - completely blocks out subway noise. Sound quality is crisp and balanced. Comfort is excellent for long wearing sessions. Battery life is as advertised. Highly recommend!",
rating: 5,
reviewer_name: "CommuterLife",
review_date: new Date("2024-10-20"),
verified_purchase: true,
helpful_votes: 31,
features_mentioned: [
"noise cancellation",
"sound quality",
"comfort",
"battery life",
],
sentiment: "positive",
},
{
product_id: "dyson_v15",
product_title: "Dyson V15 Detect Vacuum",
review_text:
"The laser dust detection is amazing - you can see exactly where dust is hiding. Suction power is incredible on all surfaces. However, it's quite heavy for extended use and the battery drains faster than expected on max power. Worth it but has limitations.",
rating: 4,
reviewer_name: "CleaningExpert",
review_date: new Date("2024-11-05"),
verified_purchase: true,
helpful_votes: 12,
features_mentioned: [
"laser detection",
"suction power",
"weight",
"battery",
],
sentiment: "mostly_positive",
},
{
product_id: "nike_air_max_270",
product_title: "Nike Air Max 270",
review_text:
"Comfortable for casual wear but not great for serious running. The cushioning feels good for walking around the city. Style is nice and goes with most outfits. Sizing runs a bit large - order half a size down. Good for the price point.",
rating: 4,
reviewer_name: "CasualRunner",
review_date: new Date("2024-10-08"),
verified_purchase: true,
helpful_votes: 7,
features_mentioned: ["comfort", "cushioning", "style", "sizing"],
sentiment: "positive",
},
{
product_id: "instant_pot_duo",
product_title: "Instant Pot Duo 7-in-1",
review_text:
"This has revolutionized my meal prep! Makes perfect rice, tender meats, and great yogurt. Learning curve was steep initially but now I use it almost daily. Saves so much time compared to traditional cooking methods. Essential kitchen appliance.",
rating: 5,
reviewer_name: "MealPrepMaster",
review_date: new Date("2024-09-15"),
verified_purchase: true,
helpful_votes: 45,
features_mentioned: ["meal prep", "rice", "yogurt", "time saving"],
sentiment: "positive",
},
{
product_id: "macbook_pro_m3",
product_title: "MacBook Pro 16-inch M3",
review_text:
"Performance is absolutely incredible for video editing and development work. The M3 chip handles everything I throw at it without breaking a sweat. Display is stunning. Battery life is impressive for such a powerful machine. Premium build quality as expected from Apple.",
rating: 5,
reviewer_name: "VideoEditor_Pro",
review_date: new Date("2024-11-10"),
verified_purchase: true,
helpful_votes: 28,
features_mentioned: [
"performance",
"M3 chip",
"video editing",
"display",
"battery",
],
sentiment: "positive",
},
])