PhoneFieldOperand provides methods for filtering by Phone number type fields.

Type parameters

Hierarchy

Properties

Readonly not

not: this

Logical negation.

Methods

eq

  • The field’s value is equal to another field or constant, or it is undefined.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | null | ContextOperand

      Field or constant that the field needs to be compared with. If the type of the constant is Phone number, elements are filtered only ne Phone number.

    Returns Filter

gt

  • deprecated

    Избегайте использования этого метода для поля типа Телефон.

    Поле больше другого поля или константы.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | ContextOperand

      Поле или константа, с которыми необходимо сравнить поле.

    Returns Filter

gte

  • deprecated

    Используйте методы eq() и neq().

    Поле больше или равно другому полю или константе.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | ContextOperand

      Поле или константа, с которыми необходимо сравнить поле.

    Returns Filter

in

  • The field is included in a Many/Multiple type field as an item.

    Parameters

    Returns Filter

like

  • like(x: string): Filter
  • Filtering based on whether the substring is included in the variable or constant.

    Parameters

    • x: string

      String that the values of the items need to be included in.

    Returns Filter

lt

  • deprecated

    Избегайте использования этого метода для поля типа Телефон.

    Поле меньше другого поля или константы.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | ContextOperand

      Поле или константа, с которыми необходимо сравнить поле.

    Returns Filter

lte

  • deprecated

    Используйте методы eq() и neq().

    Поле меньше или равно другому полю или константе.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | ContextOperand

      Поле или константа, с которыми необходимо сравнить поле.

    Returns Filter

neq

  • The field’s value is not equal to another field or constant, or it is undefined.

    Parameters

    • x: FieldOperand<T> | ConstOperandType<T> | null | ContextOperand

      Field or constant that the field needs to be compared with. If the type of the constant is Phone number, elements are filtered only ne Phone number.

    Returns Filter