{ year: 1828, winner: “Andrew Jackson”, winner_running_mate: “John C. Calhoun”, winner_party: “Democratic”, winner_electoral_votes: 178, total_electoral_votes: 261 }
total_electoral_votes represents the total number of electoral votes that year, and winner_electoral_votes represents the number of electoral votes received by the winning candidates.
Which of the following queries will retrieve all the Republican winners with at least 160 electoral votes?
question means about filtering documents with winner party as “Republicans” and total_electoral_votes polled to be atleast 160?
or winner_margin must be atleast 160?