yarn add array-aggregate
import { makeQueryFilter } from 'array-aggregate'
const filterFn = makeQueryFilter({
tags: 'bar',
'history.creator': 1, // User Id
})
console.log(
filterFn({
tags: ['foo', 'bar', 'etc'],
history: [
{
creator: 0,
},
{
creator: 1,
},
],
}),
) // true
console.log(
filterFn({
tags: ['foo', 'etc'],
history: [
{
creator: 0,
},
{
creator: 1,
},
],
}),
) // false
console.log(
filterFn({
tags: ['foo', 'bar', 'etc'],
history: [
{
creator: 0,
},
],
}),
) // false
Check that value is equal to some in query. Work with array, string, number, Date, boolean
Check that value is greater than some in query. Work with number, Date
Check that value is greater than or equal some in query. Work with number, Date
Check that value is less than some in query. Work with number, Date
Check that value is less than or equal some in query. Work with number, Date
Check that value is not equal some in query. Work with array, string, number, Date, boolean
Check that value is a member of some in query. Work with array, string, number
Check that value is not a member of some in query. Work with array, string, number
Check that all matches are true
Check that at least one matches are true
Check that all matches are false
Negotiate inner condition result
If it's true
we will check that needed field exists in object, if it's false
we will check that needed field is not inside object
Check that all elements from rule are present in value.
Check that array or string have needed length
Apply some rule to array elements
import { makeQueryFilter } from 'array-aggregate'
const secondQuery = makeQueryFilter({
foo: {
$eq: 'bar',
$exists: true,
},
createdAt,
ololo: {
a: {
$exists: false,
},
},
a: {
b: {
c: {
$lte: 1,
},
},
},
'a[0].b.c': {
// We can use path for accesing fields with index selection if it's needed
$gte: 1,
},
})
console.log(
secondQuery({
foo: ['bar', 'test'],
createdAt,
a: [
{
b: [
{
c: 1,
},
],
},
],
}),
) // true