Questions tagged [elasticjs]

elasticjs is a JavaScript implementation of the ElasticSearch Query DSL and Core API.

elasticjs is a JavaScript implementation of the ElasticSearch Query DSL and Core API.

Source on GitHub

18 questions
0
votes
1 answer

How to specify credentials username/password for elasticjs client?

Where can we specify username and password for the elasticjs (http://www.fullscale.co/elasticjs/) client?
pulkitsinghal
  • 3,855
  • 13
  • 45
  • 84
0
votes
2 answers

Elastic query to match any of provided conditions in BoolQuery

I made elastic.js build dynamic query like this: { "size": 15, "query": { "bool": { "must": [ { "term": { "tag": { "term": "rocket" } } }, { "term": { "name": { "term": "space" } } } …
Dmitry Evseev
  • 11,533
  • 3
  • 34
  • 48
0
votes
1 answer

Create elastic.js query

Long story short. I need to create an analogue with elasticjs for query: http://example.com/one/two/_search?q=tags:three* I'm confused with options listed on the docs page. Already tried to create BoolQuery, TermQuery and a couple of others, but…
Dmitry Evseev
  • 11,533
  • 3
  • 34
  • 48
1
2