Query condition for the begins_with operator.

interface QueryConditionBeginsWith {
    operator: "begins_with";
    property: string;
    value?: string;
}

Hierarchy (view full)

Properties

operator
property: string
value?: string