This project is not covered by Drupal’s security advisory policy.

Graphql 4 support for search_api_solr.

Query example:

query {
  solrSearch(offset: 0, limit: 10, query: "musée", facets: [
    {field: "formats", values:"video", min_count: 1}
  ]) {
    count,
    documents {
      id,
      title,
      format,
      thumbnail
    },
    facets {
      field,
      values {
        field
        value
        count
      }
    }
  }
}
```

This module provides facetted, filtered and fulltext search facilities to bridge graphql with search_api_solr, you will be able to specify your own document properties and use the query syntax above.

Detailed instructions in this module's README.md file.

---

Theoretically could be used as well for search_api, hence updating the existing graphql_search_api module, however a call to getSolrFieldNames prevent this port.

Supporting organizations: 

Project information

Releases