Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Assuming you have a model class named "Person" with a field "firstName", the MongoDB Spring Boot query to retrieve records based on the first name would be:

List<Person> findByFirstName(String firstName);

This will return a list of all Person records that match the given first name. You can call this method from your repository interface to retrieve the records.