matchHealthcareProfessionalsBy abstract method

Future<List<String>?> matchHealthcareProfessionalsBy(
  1. Filter<HealthcareProfessional> filter
)

Loadhealthcare professional ids from the database by filtering them using the provided Filter.

Filters are complex selectors that are built by combining basic building blocks. Examples of filters available for Healthcare professionals are AllHealthcare professionalsFilter and Healthcare professionalsByIdsFilter. This method returns the list of the ids of the healthcare professionals matching the filter.

Parameters:

  • Filter filter (required): The Filter object that describes which condition(s) the elements whose the ids should be returned must fulfill

Implementation

Future<List<String>?> matchHealthcareProfessionalsBy(Filter<HealthcareProfessional> filter,);