File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 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.
7474
7575| | Sample |
7676| ----------------------------------------------------------------------| ------------------------------|
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 ` |
8080
8181#### Filters for String values.
8282
8383| | Sample |
8484| --------------------------------------------------------------------| ---------------------|
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 ` |
8989
9090You can combine multiple fields by separating them with commas as shown below:
9191```
You can’t perform that action at this time.
0 commit comments