TQL 2.0 has stricter syntax rules for directives and transforms. Directives must now be enclosed in curly braces ( { } ) and be placed after any filters and before the pipe ( | ) character that precedes transform clauses (if any). See Directives for details.
The pipe character must be surrounded on either side by white space. For example, the following query, which would have been acceptable in previous versions of TQL:
class=test |groupby class
must now be rewritten as:
class=test | groupby class
Wildcards (see Wildcards ) specified before the query string searches for any term that end with the query string. For example, the following query:
class=*.com
will now return results that end with .com. In previous versions of TQL, the same query would have searched for the exact term .com.