categorical-filter
  • 27 Jul 2022
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

categorical-filter

  • Dark
    Light
  • PDF

Article summary

The categorical-filter parser will load data from a column in a source data table and filter out some of the values before producing categorical variables within a collection.

{
  "parser_type": "categorical-filter",
  "table_alias": "tata",
  "column": "cccc",
  "operator": "=",
  "value": "vvvv",
  "collection": "collection_name"
}

operator

usage: required
The operator attribute defines a comparison function.

Options include:

  • = - equals
  • != - not equals
  • _= - lowercase equals
  • _!= - lowercase not equals
  • contains - column value contains
  • !contains - column value does not contain
  • _contains - lowercase contains
  • _!contains - lowercase not contains
  • is null - column value is null
  • not null - column value is not null

  • value

    usage: required except for is null or not null
    The value attribute defines a constant value against which the parser will evaluate dynamic values from the column.


    Was this article helpful?