Key-value pairs for filtering results based on exact matches or comparison operators.
The filter supports both exact matches and operator-based comparisons.
Supported Operators:
$eq: Equal to (same as direct value comparison)$ne: Not equal to$gt: Greater than$gte: Greater than or equal to$lt: Less than$lte: Less than or equal toSimple exact match:
{"status": "active"}
Comparison operators:
{"score": {"$gt": 4.99}} # Score greater than 4.99
Multiple conditions:
{
"score": {"$gte": 3.0},
"color": "red"
}