pivotql-compiler-elasticsearch
v0.4.1
Published
Compile PivotQL ASTs to Elasticsearch queries.
Downloads
25
Readme
PivotQL compiler for elasticsearch
Produces elastic search queries from PivoQL ASTs.
Install
npm install pivotql-compiler-elasticsearch
Example
import {parse} from 'pivotql-parser-expression';
import {compile} from 'pivotql-compiler-elasticsearch';
const query = '( height <= 20 or favorites.color == "green" ) and firstname in ["john", "doug"]';
const queryEs = compile(parse(query))
// Use query ES with elasticsearch API
More information
See main repository for more information.