Ref Guide: escape pipes in the table

This commit is contained in:
Cassandra Targett 2017-06-09 11:44:55 -05:00
parent 70ecf9ef3e
commit a3bb51720c
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ Boolean operators allow you to apply Boolean logic to queries, requiring the pre
|Boolean Operator |Alternative Symbol |Description
|AND |`&&` |Requires both terms on either side of the Boolean operator to be present for a match.
|NOT |`!` |Requires that the following term not be present.
|OR |`||` |Requires that either term (or both terms) be present for a match.
|OR |`\|\|` |Requires that either term (or both terms) be present for a match.
| |`+` |Requires that the following term be present.
| |`-` |Prohibits the following term (that is, matches on fields or documents that do not include that term). The `-` operator is functionally similar to the Boolean operator `!`. Because it's used by popular search engines such as Google, it may be more familiar to some user communities.
|===