Use cases
Search in Drupal helps both users and site builders create capabilities in applications to find content.
Querying for two different movie titles simultaneously
Drupal’s native search form, which invokes Drupal’s search processor, supports various search parameters. In the search form, the following can be entered:
"Wizard of Oz" OR "Gone with the wind"
And, don’t forget, Drupal does offer some advanced search options that can abstract Drupal’s native search form.
Filter by sport
This use case is perfect for the Facets
module. After enabling facets, which also enables Search API, facets can be created through Search API’s configuration (admin/config/search/search-api). Specific field-type widgets can be implemented through search API processors, specifically a preprocess query processor. Then, leveraging the advanced settings of the search page configuration, the processor can be added and the facets can...