Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

The query language is still work in progress. Some features may not yet have been released.

 

The query language ressembles the SQL language and allows powerful queries. A typical example would be:

...

It takes away most of the complexity of properly formatting and evaluating different field types, including dates, multi-select custom fields, labels and advanced string searches.

...

.

Examples:

Code Block
{myfield}.Matches("hello", "prefix")
{myfield}.Matches("2018-1-1", ">=")
{myfield}.Matches(10, ">=", 100, "<")
{myfield}.Matches("world") AND {mydate}.Matches("2018-1-1", ">=", "2018-1-2", "<")
...

...