You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the queries are created as shown in the images below.
By dispatching an event that will create the queries, the bundle would become more flexible and it would for example allow to implement fuzzy queries, or anything more advanced.
Another way to allow more flexibility is to extract the search method of the adapter into two stages, creating the query prepareSearch and running it executeQuery. Extending the massive_search.adapter would be much easier that way.
The text was updated successfully, but these errors were encountered:
Events I think currently are difficult to handle at this case as they should not be adapter specific. I'm fine if we add some protected functions like prepareSearch and executeSearch into both adapters to make it easy to override this service functionality.
At the moment the queries are created as shown in the images below.
By dispatching an event that will create the queries, the bundle would become more flexible and it would for example allow to implement fuzzy queries, or anything more advanced.
Another way to allow more flexibility is to extract the search method of the adapter into two stages, creating the query
prepareSearch
and running itexecuteQuery
. Extending themassive_search.adapter
would be much easier that way.The text was updated successfully, but these errors were encountered: