Skip to content

Commit 2602ab4

Browse files
authored
Merge pull request #3906 from luigirende/v1.12
Add new operations in the query request for state component
2 parents 5c132e6 + dca4801 commit 2602ab4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

daprdocs/content/en/developing-applications/building-blocks/state-management/howto-state-query-api.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,14 @@ The `filter` specifies the query conditions in the form of a tree, where each no
2828

2929
The following operations are supported:
3030

31-
| Operator | Operands | Description |
32-
|----------|-------------|--------------|
33-
| `EQ` | key:value | key == value |
31+
| Operator | Operands | Description |
32+
|----------|-------------|--------------------------------------------------------------|
33+
| `EQ` | key:value | key == value |
34+
| `NEQ` | key:value | key != value |
35+
| `GT` | key:value | key > value |
36+
| `GTE` | key:value | key >= value |
37+
| `LT` | key:value | key < value |
38+
| `LTE` | key:value | key <= value |
3439
| `IN` | key:[]value | key == value[0] OR key == value[1] OR ... OR key == value[n] |
3540
| `AND` | []operation | operation[0] AND operation[1] AND ... AND operation[n] |
3641
| `OR` | []operation | operation[0] OR operation[1] OR ... OR operation[n] |

0 commit comments

Comments
 (0)