@florajs/ql-compiler
v6.0.1
Published
Compiler for Flora QL
Downloads
3
Keywords
Readme
@florajs/ql-compiler
Compiles a Flora Query Language statement into a function.
Examples
const compile = require('@florajs/ql-compiler');
// Use a Flora filter as function
const filterFn = compile.filter('id=321 AND userId=109369');
filterFn({ id: 321, userId: 109369 }) // => true
filterFn({ id: 321, userId: 109368 }) // => false
// Use a Flora select statment as function
const selectFn = compile.select('foo,bar[baz]');
selectFn({ foo: 42, bar: { baz: 23, id: 1337 }, bla: 'blubb' })
// => { foo: 42, bar: { baz: 23 } }