kozureookami
kozureookami

Reputation: 151

Faceted search with elasticsearch

I'm trying to build a simple UI in Angular with facets on top of elasticsearch. Can someone point me to an example?

thanks!

Upvotes: 2

Views: 1248

Answers (1)

Val
Val

Reputation: 217424

You might want to check the ElasticUI project, which provides AngularJS directives for Elasticsearch.

More specifically, that project provides support for single select facets with the eui-singleselect directive

<eui-singleselect field="YOUR_FIELD" size="5"></eui-singleselect>

...and multi-select facets with the eui-checklist directive

<eui-checklist field="YOUR_FIELD" size="10"></eui-checklist>

Check their demo file for sample usage.

Also see:

Upvotes: 2

Related Questions