New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@aegis-framework/want

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aegis-framework/want

We Are Not Tableau Query Format

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

WANT Query Format

Description

WANT is an acronym for We Are Not Tableau. It stands for an overly simplistic way to perform complex queries using an easy to parse format.

Operators

WANT defines a set of universal operators to perform the queries.

OperatorLogical TranslationAdditional Notes and Behavior
=Is equal
!Is not equal
~ContainsOn numeric values, this operator will act the same as the = operator.
^Does not containsOn numeric values, this operator will act the same as the ! operator.
>More than
<Less than

Samples

All users whose [first name equals Jane and does not equal John and last name contains Doe] OR [age is more than 20]

[
  [ first_name: [ '=Jane', '!John' ], last_name: [ '~Doe' ] ],
  { age: [ '>20' ] }
]

License

WANT is a Free Open Source Software project released under the MIT License.

FAQs

Package last updated on 31 May 2022

Did you know?

Socket

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.

Install

Related posts