
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
@looker/filter-expressions
Advanced tools
This TypeScript package provides the necessary functions for transforming [Looker filter expressions](https://docs.looker.com/reference/filter-expressions) into data structures and localized text summaries – and vice versa.
This TypeScript package provides the necessary functions for transforming Looker filter expressions into data structures and localized text summaries – and vice versa.
getExpressionTypeReturns a valid filter expression type when given the type and field properties of an IDashboardFilter object as defined in @looker/sdk.
getExpressionType({ field: { is_numeric: true }, type: 'field_filter' })
// 'number'
parseFilterExpressionReturns an Abstract Syntax Tree (AST) that logically represents the filter expression string passed in, as well as the filter expression type (and optional user attributes).
parseFilterExpression('number', '[0,20],>30')
// {
// type: ',',
// left: {
// type: 'between',
// bounds: '[]',
// low: 0,
// high: 20,
// is: true,
// },
// right: {
// is: true,
// type: '>',
// value: [30],
// },
// }
summaryThe summary function returns a localized, human-readable summary of a filter expression, given the expression's type, the expression itself, and the user attributes and field, if applicable.
summary('number', '[0,20],>30')
// 'is in range [0, 20] or is > 30'
typeToGrammarReturns an object with utility functions and values pertaining to a given expression type:
toString: a function that converts an AST into an expression of the given typesubTypes: an array containing the sub-types of the expression type, for example ">", "<", "=", "between", etc, for a number expression typegetFilterTokenItemConverts an AST to a single item for use in a token (i.e. not advanced) filter.
FAQs
This TypeScript package provides the necessary functions for transforming [Looker filter expressions](https://cloud.google.com/looker/docs/reference/filter-expressions) into data structures and localized text summaries – and vice versa.
The npm package @looker/filter-expressions receives a total of 501 weekly downloads. As such, @looker/filter-expressions popularity was classified as not popular.
We found that @looker/filter-expressions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.