Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 470 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 470 Bytes

ES2SQL

Javascript library to translate elastic search queries to sql

Usage

import { Es2sql } from 'src/modules/es2sql.js';

const esQuery = {
  filters: {...},
  table: 'my-table',
  from: 10,
  size: 100
};

const sqlQuery = Es2sql.translate(esQuery);

Test

npm test

Build

npm build

Attribution

Built using the wonderful react-es6-webpack-karma-boilerplate project