Skip to content

Basic_Filter_Statement_Examples

terrelsa13 edited this page Sep 6, 2024 · 1 revision

Filter for movies played 30 or more days ago with a played count of 1 or more.

basic_settings:
  filter_statements:
    movie:
      played:
        condition_days: 30
        count_equality: '>='
        count: 1

Filter for movies created 563 or more days ago with a played count less than 1.

basic_settings:
  filter_statements:
    movie:
      created:
        condition_days: 563
        count_equality: '=='
        count: 0
        behavioral_control: true

Filter for both; movies played 30 or more days ago with a played count of 1 or more and filter for movies created 563 or more days ago with a played count less than 1.

basic_settings:
  filter_statements:
    movie:
      played:
        condition_days: 30
        count_equality: '>'
        count: 0
      created:
        condition_days: 563
        count_equality: 'not >='
        count: 1
        behavioral_control: true

Configuration File Examples

Clone this wiki locally