Post-Filters

Filters applied on a query result AFTER grouping, sorting and slicing.

Once a query returns some results, a post-filter can be applied on them to further restrict the number of matching results that are returned.

circle-info

Post-filter expressions are processed in the V8 engine and NOT the query engine, using a jseparrow-up-right expression parser that has been augmented with a few extensions.

The filter expression is applied individually to each item in the result array (these items may be entire groups). Only those items for which the expression evaluates to a truthy value are passed through.

circle-exclamation

Core JS Operators

Most of the following (non-mutating) standard operators are understood by jsep out of the box. A few are implemented using extensions. Regardless, they are all processed exactly as they would be processed in a normal JavaScript runtime

jsep Extensions

Some of the core JS operators listed above are actually implemented using extensions in jsep. Additionally, some useful operators that are not part of JS syntax are also supported for convenience.

Operators

  1. =~ - Regex Match. Filters on a regex pattern. The left operand must match the regex patternarrow-up-right given in the right operand for the filter to pass.

  2. =* - Glob Match. Filters on a glob pattern. The left operand must match the glob pattern given in the right operand for the filter to pass.

Namespaced Helpers

Apart from the regular operators and member functions that the built-in data types support, it is often handy to be able to invoke Math functions or methods from the lodash utility. jsep has been extended to provide access to these functions and some more, using named object literals that represent these modules. The available namespaces are listed below, along with special shortcuts, if any, to access them.

$Math - The Math Global Object

All methods and properties of the Math global objectarrow-up-right are available under this namespace. An example usage may be:

$_ - The lodash utility module

All methods and properties of the lodash utility modulearrow-up-right are available under this namespace. In addition to being referred to by the $_ namespace handle, this is also the default namespace under which methods are searched when they are invoked as standalone functions, without a property dereference. For example:

circle-info

Note that the default namespace is searched only when a function call is made, and not when just referencing the function as a member. In that case, the member will be searched for under the this context of the current object under iteration of the result array.

$RG - The RecallGraph Namespace for Special Functions

This namespace is reserved for some special functions defined by RecallGraph. The supported methods are:

This method returns the type of the parameter passed to it. Its behavior is identical to the JavaScript typeof operatorarrow-up-right. For example:

circle-info

For more examples, take a look at the test cases defined in helpers.test.jsarrow-up-right.

Last updated