Assuming correct imports, properly instantiated MongoClient called client, and given the following Java code:
MongoCollection<Document> collection = client.getDatabase(“employees”).getCollection(“records”);
Bson filter = eq(“name”, “Samantha Smith”);
Bson update = set(“name”, “Sam Smith”);
What statement correctly updates a single document in MongoDB?