File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -74,18 +74,18 @@ You can filter on `Number`, `String` & `Boolean` values only.
74
74
75
75
| | Sample |
76
76
| ----------------------------------------------------------------------| ------------------------------|
77
- | To filter values greater than or less than a specific value | ` q= age:>10` or ` q= age:<10` |
78
- | To filter values greater (or less) than or equal to a specific value | ` q= age:>=10` or ` q= age:<=10` |
79
- | To filter values that match a specific value. | ` q= age:=10` |
77
+ | To filter values greater than or less than a specific value | ` age:>10 ` or ` age:<10 ` |
78
+ | To filter values greater (or less) than or equal to a specific value | ` age:>=10 ` or ` age:<=10 ` |
79
+ | To filter values that match a specific value. | ` age:=10 ` |
80
80
81
81
#### Filters for String values.
82
82
83
83
| | Sample |
84
84
| --------------------------------------------------------------------| ---------------------|
85
- | Filter values that start with a specific string | ` q= name:arya*` |
86
- | Filter values that end with a specific string | ` q= name:*stark` |
87
- | Filter values where a specific string appears anywhere in a string | ` q= name:*ya*` |
88
- | Filter values that match a specific string | ` q= name:arya%20stark` |
85
+ | Filter values that start with a specific string | ` name:arya* ` |
86
+ | Filter values that end with a specific string | ` name:*stark ` |
87
+ | Filter values where a specific string appears anywhere in a string | ` name:*ya* ` |
88
+ | Filter values that match a specific string | ` name:arya%20stark ` |
89
89
90
90
You can combine multiple fields by separating them with commas as shown below:
91
91
```
You can’t perform that action at this time.
0 commit comments