Skip to content

Advanced Term Search

Advanced term search is accessible on multiple occasions, but is functionally the same.

Uses Apache Lucene query parser syntax on the term names.

Uses Apache Lucene query parser syntax on the term definitions.

To show obsolete terms in search results or not.

Apache Lucene query parser syntax

Section titled Apache Lucene query parser syntax

You can find in depth information on this topic on the source documentation from Apache Lucene.

Common use cases might include:

Example
instrument model

Specifies that the result MUST contain instrument OR model.

Example
+instrument model

Using the + operator specifies that the result MUST contain instrument and MAY contain model

Example
instrument model NOT SCIEX
instrument model -SCIEX

Using the -/NOT operator specifies that the result MUST contain instrument OR model and MUST NOT contain SCIEX.

Example
"instrument model"

Using "" grouping syntax specifies that the result MUST contain instrument model.