Query pipeline language (QPL)
Query pipeline language (QPL)
The query pipeline language, also known as QPL (pronounced qupel) is the language used to define query pipeline statements. These statements are authored in the Coveo Administration Console when configuring query pipelines and are interpreted by the Search API at query time.
QPL describes how a query should be handled by query pipeline features (for example, Thesaurus, Ranking, and Stop) as a search request passes through a query pipeline.
Query pipeline features
Each query pipeline feature is expressed using a specific QPL statement.
featured result
The featured result query pipeline feature increases the ranking scores of items that match specific query expressions.
The following QPL statement expressing the featured result feature promotes specific items identified by field expressions when the user query contains the word help.
when $query contains "help"
featured result `@urihash==7Vf6bWsytplARQu3`
filter
The filter query pipeline feature adds hidden query syntax expressions to the query before it’s executed against the index.
The following QPL statement expressing the filter feature adds @source=="Public Content to the advanced (aq) part of the query expression.
As a result, items not originating from the Public Content source are excluded from the query results.
filter aq `@source=="Public Content"`
queryParamOverride
The queryParamOverride query pipeline feature overrides the values of specific query parameters.
In your company intranet, support agents often search for previous cases containing long product codes.
To help them find relevant results without having to enter complex queries, you set the enableQuerySyntax and wildcards query parameters to true for all search requests processed by the Search API.
override query enableQuerySyntax: true, wildcards: true
ranking expression
The ranking expression query pipeline feature modifies the ranking scores of query result items based on whether they match specific query expressions.
On your company blog, you want to boost the ranking scores of posts whose title contains the word troubleshoot.
Therefore, you create the following QPL statement that boosts the ranking score by 10 for items that match the specified regex.
boost `@title/="^.*troubleshoot.*$"` by 10
rankingweight
The rankingweight query pipeline feature can modify the weights of various ranking factors used by the index to determine the ranking scores of query result items.
On a medical information portal, you want to prioritize recent articles regardless of their relevance to the user query.
Therefore, you create a QPL statement that increases the docDate ranking factor weight while decreasing other ranking factor weights.
rank docDate: 9, termCasing: 1, uri: 0
stop
The stop query pipeline feature removes specified words from the basic (q) part of the query expression before executing a query against the index.
On a customer support intranet for equipment repair, you want agents to find relevant results faster by ignoring common words that don’t add meaning to their queries.
Therefore, you create the following QPL statement that removes the words fix and repair, as well as any word that matches the /how to \w+/ regex.
stop "fix", "repair", /how to \w+/
thesaurus
The thesaurus query pipeline feature expands specific words or phrases in the basic (q) part of the query expression with their synonyms before executing a query against the index.
On your health information portal, you want users searching for treatments to also find results related to prevention methods.
Therefore, you create the following QPL statement that expands the word treatment with the synonym prevention, as well as any word that matches the (medication) \w+ regex.
expand "treatment", /(medication) \w+/ to "prevention"
trigger
The trigger query pipeline feature executes specific actions in the search interface from which queries originate.
In your e-learning platform, you want to display an animation in the search interface when users search for instructions on how to use a specific feature.
Therefore, you create the following QPL statement that triggers the showAnimation action when the user query contains the word instruction.
when $originalQuery contains "instruction"
execute showAnimation("triggerStatement", 100, true)
|
|
Note
Since queries are parsed before query pipeline statements are evaluated, the |
Reference
Primitive types
QPL supports four primitive types:
-
Boolean (that is,
true,false) -
integer (e.g,
123) -
quoted string (for example,
"foo") -
string (for example,
foo)
Regular expressions
Regular expressions must be enclosed within forward slashes (/).
|
|
Note
QPL uses the java.util.regex package to parse regular expressions (see Lesson: Regular Expressions). |
# Using a quantifier
/foo*/
# Using a named capturing group; the `<` and `>` symbols must be escaped
/(?\<myGroup\>foo)/
# Using an embedded flag expression (that is, modifier)
/(?i)foo/
# Using a predefined character class
/\d/
Query expressions
Query expressions must be enclosed within backticks (`).
|
|
Note
The main difference between a query expression and a quoted string is that the QPL parser will reject a query pipeline statement whose definition contains a syntactically wrong backticks-enclosed query expression, whereas it won’t try to parse that same expression if it’s enclosed within double quotes (see Query syntax). |
# A simple query expression
`foo bar`
# A query expression using a Boolean query syntax operator
`foo OR bar`
# A field query expression
`@title==foo`
# A complex query expression using the `$qre` standard query extension
`$qre(expression: $context.key=="foo", modifier: 100)`
# A complex query expression using the `$qre` and `$splitValues` standard query extensions
`$qre(expression: @coveodptaxonomyleaves=$splitValues(text: $query, separator: '\s'), modifier: 15)`
|
|
Leading practice
Boolean query syntax operators ( While using lowercase Boolean operators may work, doing so is ill-advised as it can yield unexpected results. |
Lists
Some features and constructs accept a list of values rather than a single value.
When this is the case, distinct values are separated by commas (,).
expand /foo.*/, "bar baz" to "\"hello world\""
Hashes
Some features and constructs accept a list of key-value pairs rather than a single value.
When this is the case:
-
Each key must be a non-quoted string.
-
Each key must be separated from its value by a colon (
:) -
Each value must be a Boolean, integer, quoted string, or regular expression.
-
Distinct key-value pairs are separated by commas (
,)
key1: true, key2: 123, key3: "bar", key4: /foo.*/, key5: `hello world`
QPL objects
QPL objects are domain-specific constructs which allow you to define conditions using the supported operators.
The following table lists all available QPL objects.
| Object | Contains the value of the… | Returns many values |
|---|---|---|
|
… |
No |
|
…browser in the user agent. |
Yes |
|
… |
No |
|
… |
Possibly |
|
…device in the user agent. |
Yes |
|
… |
No |
|
…query expression that represents the filters introduced by the selection of dynamic facets. |
No |
|
… |
Yes |
|
… |
Yes |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
…operating system in the user agent. |
Yes |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
|
… |
No |
Supported operators
When using a QPL operator:
-
The left operand must be a QPL object.
-
The right operand, if required, must be a Boolean, integer, quoted string, regular expression, or query expression.
|
|
Note
Using a query expression as a right operand is typically only legitimate when:
|
The following table lists the supported QPL operators.
| Operator | Best suited for rightmost operand types | Examples |
|---|---|---|
|
|
|
|
|
|
Regular expression |
|
|
|
|
|
|
|
|
None |
|
1. Returns false if the left operand is null, undefined, an empty string, a blank string (that is, a string containing only white spaces), an empty array, or an array of empty/blank strings. Returns true otherwise.
Using QPL objects in query expressions
You can inject the value of any QPL object (except for $query/$originalQuery) inside a query expression.
When a QPL object such as $os returns many values, use the $joinValues query extension (for example, $joinValues(values: $os)).
When you want to inject the value of a specific $context object key inside an expression:
-
If the expression is a string in a QPL statement definition (that is, not a query expression enclosed within back-ticks), use square brackets notation (for example,
boost @audience==$context[userRole] by 100). -
If the expression is a query expression enclosed within back-ticks in a QPL statement definition, or if it’s a query expression that isn’t part of a QPL statement, use dot notation (for example,
boost `@audience==$context.userRoleby 100` /$qre(expression: @audience==$context.userRole, modifier: 100)).
|
|
Leading practice
When referencing a QPL object in a For example: Condition
Statement
|
Comments
QPL comments:
-
Must be preceded by the
#symbol. -
Take an entire line.
Valid:
# This is a valid comment.
Invalid:
expand foo to bar # This is an invalid comment.
Empty lines
The QPL parser ignores empty lines.
expand foo to bar
# The five previous lines are ignored