Skip to content

Commit

Permalink
fix(query-documentation): typo range query
Browse files Browse the repository at this point in the history
  • Loading branch information
idrissneumann committed Oct 15, 2024
1 parent 4c1e228 commit 3419fc4
Show file tree
Hide file tree
Showing 2 changed files with 2,368 additions and 2,962 deletions.
2 changes: 1 addition & 1 deletion docs/get-started/query-language-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Quickwit support various types of clauses to express different kinds of conditio
| phrase prefix | `field:"sequence of tokens"*` | `title:"how to m"*` | A phrase prefix clause tests the existence of a sequence of tokens, the last one used like in a prefix clause | yes |
| all | `*` | `*` | A match-all clause will match every document | no |
| exist | `field:*` | `error:*` | An exist clause tests the existence of any value for the field, it will match only if the field exists | no |
| range | `field:bounds` |`duration:[0 TO 1000}` <br/> `last_name:[banner TO miller]` | A term clause tests the existence of a token between the provided bounds | no |
| range | `field:bounds` |`duration:[0 TO 1000]` <br/> `last_name:[banner TO miller]` | A term clause tests the existence of a token between the provided bounds | no |

## Queries

Expand Down
Loading

0 comments on commit 3419fc4

Please sign in to comment.