Building Conditions
Last updated
{
<compound_operator>: [ <cond>, <cond>, ... ]
}{
"$.variables.name": {
"$eq": "Shrey"
}
}# Sample query to be built
name=Shrey OR age=10// Condition Object
{
"$or": [
{
"$.variables.name": {
"$eq": "Shrey"
}
},
{
"$.variables.age": {
"$eq": 10
}
}
]
}# Sample query to be built
name=Shrey OR (age>25 AND marks >=80)// Condition Object
{
"$or": [
{
"$.variables.name": {
"$eq": "Shrey"
}
},
{
"$and": [
{
"$.variables.age": {
"$gt": 25
}
},
{
"$.variables.marks": {
"$gte": 80
}
}
]
}
]
}