Here is my code snippet to search profile, blog, and content from kademi site using SearchManager API from search application.
keyword = params['q'];
var json = {
"query": {
"match": {"_all":keyword}
},
"highlight": {
"fields" : {
"*" : {},
"content" : {
"type" : "plain"
}
}
}
};
var indexes = ["profile", "bran-103166797", "blogs-103166797"]; // profile, content, blog
var sm = applications.search.searchManager;
var result = sm.search(JSON.stringify(json), indexes);
If you see my screenshot below, there are several index type for index names = profile. I just want to get data from index type = profile
with index name = profile
.
There's a couple of changes you should make Firstly, instead of naming the indexes directly (eg bran-103166797), you should use AppIndexers so that the correct name is generated. Otherwise when you publish a new version of the website your search will still be indexing the old version:
Then you can use the prepareSearch method on SearchManager which lets you directly manipulate the search builder:
Then you can execute the search query using the elasticsearch API methods. Note that in this example I'm using inline js scripts rather then a js controller, so i need to set the results in a request attribute so the template can access it.
Here's a full worked example: http://docs.kademi.co/howtos/devs/advanced-search-pages-with-the-searchmanager-api.html
And the source of the template in that example is here: