ausome-maps / TherapEase

TherapEase is a platform that helps in identifying location of special education facilities and services in the Philippines
MIT License
5 stars 0 forks source link

feat: added api implementation for services offered filter #93

Closed lkpanganiban closed 10 months ago

lkpanganiban commented 10 months ago

This is an initial implementation for services_offered filter. This partly develops the following feature: https://github.com/ausome-maps/TherapEase/issues/46

Refer to the following code on the implementation:

const queryParameters = {
  q: searchBoxValue,
  filters: {
    services_offered: [
      {
        orthoses: {
          mode: { onsite: 0, teletherapy: 0, home_service: 0 },
        },
      },
    ],
  },
};