0.4.2 • Published 2 years ago

pivotql-compiler-mongodb v0.4.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

PivotQL compiler for mongodb

Produces mongodb queries from PivoQL ASTs.

Install

npm install pivotql-compiler-mongodb

Example

import {parse} from 'pivotql-parser-expression';
import {compile} from 'pivotql-compiler-mongodb';

const query = '( height <= 20 or favorites.color == "green" ) and firstname in ["john", "doug"]';

const queryMongo = compile(parse(query))

// Use queryMongo with query API.

More information

See main repository for more information.

0.4.1

2 years ago

0.4.0

2 years ago

0.4.2

2 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago