Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
elasticsearch-dynamic-query
Advanced tools
A simple query builder, it will helps to develop DSL query for elasticsearch
A simple query builder, it will helps to develop DSL query for elasticsearch
You can start it from npm. Go to your terminal and run this command from your project root directory.
npm install elasticsearch-dynamic-query
After installation, import Elasticsearch Dynamic Query Builder in your file,
const { ElasticSearchDynamicQuery } = require('elasticsearch-dynamic-query');
Now you are ready to build your queries by your logical command.
Before build your query you need to develop your logical command based on your requirements. For building your logical command need to maintain a proper structure. Here is regular example,
const command = {
fieldName: {
type: DataTypeEnum, // ID, TEXT, NUMBER, ARRAY, DATETIME,
conditions: {
$eq?: any;
$neq?: any;
$in?: string[] | number[];
$nin?: string[] | number[];
$like?: any;
$nlike?: any;
$lt?: string | number;
$lte?: string | number;
$gt?: string | number;
$gte?: string | number;
$exists?: boolean;
$regex?: string;
$between?: {
$lt?: string | number;
$lte?: string | number;
$gt?: string | number;
$gte?: string | number;
}
$or?: {
// Without $or, all conditional operator available under $or
}
}
}
}
In your command you can pass multiple fields with type and conditions. Here is multiple accepatable data type and conditional operators.
This data type will be accept as type
value in your field.
export enum DataTypeEnum {
ID = 'ID',
TEXT = 'TEXT',
NUMBER = 'NUMBER',
ARRAY = 'ARRAY',
DATETIME = 'DATETIME',
}
This conditional operator will be accept as conditions
value in your field.
Operator | Description |
---|---|
$eq | Equal |
$neq | Not Equal |
$in | Included in an array |
$nin | Not included in an array |
$like | Match in text |
$nlike | Not match in text |
$lt | Less than |
$lte | Less than or equal to |
$gt | Greater than |
$gte | Greater than or equal to |
$exists | Exists field or not |
$regex | Supported regular expression |
$between | Is between |
$or | Or expression |
Initialize Elasticsearch Dynamic Query Builder:
const builder = new ElasticSearchDynamicQuery(command);
Compound queries wrap other compound or leaf queries, either to combine their results and scores, to change their behaviour, or to switch from query to filter context. Currently this package support these query under Compound Query:
The default query for combining multiple leaf or compound query clauses, as must
, should
, must_not
, or filter
clauses. The must and should clauses have their scores combined — the more matching clauses, the better — while the must_not and filter clauses are executed in filter context. Below added example how to use Bool Query:
const query = builder.compoundQuery().build();
In default, Compound Query Build Bool query so no need to pass any type under compoundQuery()
to build dynamic query. But compoundQuery(type)
can accept other type.
This .build()
function will generate a validate object using logical command
{
"bool": {
"must": [
{
"match": {
"cast": "Antti"
}
}
],
"filter": [
{
"range": {
"release_year": {
"lt": 2020,
"gte": 2016
}
}
}
]
}
}
You can pass generated query to your searching index.
Pull requests are welcome. For any changes, please open an issue first to discuss what you would like to change.
FAQs
A simple query builder, it will helps to develop DSL query for elasticsearch
The npm package elasticsearch-dynamic-query receives a total of 0 weekly downloads. As such, elasticsearch-dynamic-query popularity was classified as not popular.
We found that elasticsearch-dynamic-query 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.