| Name | Type | Description |
|---|---|---|
other* | FilterExpression | The filter expression to combine with |
const filter = Tag("category").eq("books").and(Num("price").lt(30));
// Generates: (@category:{books} @price:[-inf 30])Combine this filter with another using AND logic.
In RediSearch, AND operations are represented by space-separated conditions
within parentheses: (condition1 condition2)