Socket
Socket
Sign inDemoInstall

elasticsearch-concise-query

Package Overview
Dependencies
8
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    elasticsearch-concise-query

A highly configurable and syntactically concise Elasticsearch query builder


Version published
Weekly downloads
0
Maintainers
1
Install size
20.8 kB
Created
Weekly downloads
 

Readme

Source

Elasticsearch Concise Query

Elasticsearch Concise Query simplifies the process for querying an Elasticsearch index.

import { buildECQ } from 'elasticsearch-concise-query';

It is also available as a React higher-order component:

import { ECQ } from 'elasticsearch-concise-query';
...
const MyComponent = ({query, results}) => { ... }
export default ECQ(conciseQueries, config)(MyComponent)

Contents

  • Basic Example
  • Configuration
  • Interoperability

Basic Example

See the examples directory for more detailed example usage.

Using esConnect to access indexed Elasticsearch data for use in an application is as easy as passing a simple, single-depth object with search parameters and an optional configuration object into a function:

buildECQ({
  match: { bike_type: 'road' },
  range: { price: { lte: 600, gte: 1000 } },
  enums: { frame: ['carbon', 'aluminum alloy'] },
  multiField: [{ fields: ['description, keywords'], value: 'skinny tires' }]
}, configObj);

buildECQ returns an Elasticsearch bool query object:

{
  "query": {
    "bool": {
      "should": [
        {
          "match": {
            "bike_type": "road"
          }
        },
        {
          "query": {
            "range": {
              "price": {
                "lte": 600,
                "gte": 1000
              }
            }
          }
        },
        {
          "query_string": {
            "query": "carbon OR aluminum alloy",
            "default_field": "frame",
            "analyze_wildcard": false,
            "fuzziness": 0
          }
        },
        {
          "multi_match": {
            "query": "skinny tires",
            "fields": [
              "description, keywords"
            ]
          }
        }
      ],
      "minimum_should_match": 4
    }
  },
  "size": 5,
  "sort": {
    "price": {
      "order": "asc"
    }
  }
}

Configuration

A configuration object is passed as a second argument to buildECQ:

KEYVALUE TYPEDESCRIPTION
indexStringThe endpoint to send the query object to.
[test]BooleanRuns esConnect in "test mode" (does not send a network request).
[size]IntegerSpecify the maximum amount of results to return. Default: 10
[required]IntegerSpecify the minimum amount of queries a result should match (all if omitted).
[sortBy]StringSort results by a specific date.

Interoperability

With elasticsearch.js

To use with ElasticSearch's official Javascript client, elasticsearch.js, simply call buildESQuery as follows in the object given to its search method:

client.search({
  index: 'myindex',
  body: buildESQuery(query, config)
});

With ReactiveSearch

To use with ReactiveSearch, a React component library, simply pass a function that calls buildESQuery as follows into the customQuery prop. For example:

<DataSearch
  ...
  customQuery={() => buildESQuery(query, config)}
/>

Keywords

FAQs

Last updated on 10 Mar 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc