You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/live-queries.md
+89Lines changed: 89 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1866,6 +1866,95 @@ concat(
1866
1866
avg(add(user.salary, coalesce(user.bonus, 0)))
1867
1867
```
1868
1868
1869
+
### Custom Operators
1870
+
1871
+
You can define your own operators using the `defineOperator` function. This is useful when you need specialized comparison logic or domain-specific operations.
The functional variant API provides an alternative to the standard API, offering more flexibility for complex transformations. With functional variants, the callback functions contain actual code that gets executed to perform the operation, giving you the full power of JavaScript at your disposal.
0 commit comments