Skip to content

Instantly share code, notes, and snippets.

@dalmat36
Created April 3, 2015 16:39
Show Gist options
  • Select an option

  • Save dalmat36/afa57b216f921c3736d3 to your computer and use it in GitHub Desktop.

Select an option

Save dalmat36/afa57b216f921c3736d3 to your computer and use it in GitHub Desktop.
This code snippet shows how to remove a person document from the MongoDB "people" collection.
//Remove document from collection
collection.deleteOne(eq("First Name", "Marilyn"));
System.out.println("Result After Delete\n");
printAllPeople();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment