Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@rsql/builder
Advanced tools
API for building RSQL for Node.js and Browsers
# with npm
npm install --save @rsql/builder
# with yarn
yarn add @rsql/builder
builder.comparison(selector, operator, value): ComparisonNode
Creates new ComparisonNode
- similar to the createComparisonNode
from the @rsql/ast
but with simpler API (no need to create SelectorNode
or ValueNode
and accepts numbers as values)
builder.<operator>(selector, value): ComparisonNode
builder.eq(selector, value): ComparisonNode
builder.neq(selector, value): ComparisonNode
builder.le(selector, value): ComparisonNode
builder.lt(selector, value): ComparisonNode
builder.ge(selector, value): ComparisonNode
builder.gt(selector, value): ComparisonNode
Creates new ComparisonNode
with the predefined operator for single value.
builder.<operator>(selector, values): ComparisonNode
builder.in(selector, values): ComparisonNode
builder.out(selector, values): ComparisonNode
Creates new ComparisonNode
with the predefined operator for multiple values.
builder.logic(expressions, operator): LogicNode
Creates new LogicNode
- similar to the createLogicNode
from the @rsql/ast
but with simpler API (accepts one or more expressions)
builder.<operator>(...expressions): LogicNode
builder.and(...expressions): LogicNode
builder.or(...expressions): LogicNode
Creates new LogicNode
with the predefined operator for one or more expressions.
MIT
v1.4.0 (Fri Jul 08 2022)
@rsql/emitter
FAQs
RSQL High level API
The npm package @rsql/builder receives a total of 3,553 weekly downloads. As such, @rsql/builder popularity was classified as popular.
We found that @rsql/builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.