Documentation
    Preparing search index...

    Represents a single atomic filtering condition for a database query.

    Implements

    • FilterType
    Index

    Constructors

    Properties

    Constructors

    • Parameters

      • prop: string
      • value: any
      • operator: FilterOperatorType = 'equals'

      Returns Filter

    Properties

    operator: FilterOperatorType

    The logic operator evaluating the condition (e.g., 'equals', 'greater', 'contains').

    prop: string

    The precise property name in the collection to apply the filter against.

    value: any

    The raw value, array of values, or object reference to compare against.