Selectors


Selector Operators

  • =

    Equal to (any_field=any_value)

  • !=

    Not equal to (any_field!=any_value)

  • <

    Less than (any_field

  • >

    Greater than any_field>any_value

  • <=

    Less than or equal to (any_field<=any_value)

  • >=

    Greater than or equal to (any_field>=any_value)

  • *=

    Contains the exact word or phrase (any_field*=any_value)

  • ~=

    Contains all the words (any_field~=any_value)

  • %=

    Contains the exact word or phrase (using slower SQL LIKE) [v2.1] (any_field%=any_value)

  • ^=

    Contains the exact word or phrase at the beginning of the field [v2.1] (any_field^=any_value)

  • $=

    Contains the exact word or phrase at the end of the field [v2.1] (any_field$=any_value)