Excerpt | |||||
---|---|---|---|---|---|
Filter for Content with the Migration Layer added and the term “Product” as keyword assigned.
|
Basic Filter
Filter for content that have the exact term in a field. Can be used for single tagbox directly. For multi tagbox a nested filter must be used in combination with the term filter.
...
Code Block | ||
---|---|---|
| ||
{ "kind": "TermFilter", "field": "fieldpath", "term": "Europe" } |
Properties
kind | Required Which filter to use, as string e.g. "TermFilter" |
field | Required The field's name to execute the filter on. It is composed by the field ids of the hierarchy joined with "." (i.e. personLayer.address.region). |
term | Required The value in the field, to be used as term. It must be an exact match, so The term filter on "Europe" does not find "Western Europe", but only "Europe". |
...