Type alias BeginsWithCondition

BeginsWithCondition: {
    $beginsWith: string;
}

A clause that translates to the $beginsWith operator. It tests to see if a string attribute begins with the specified string.

It translates to the begins_with() function.

e.g. { x: { $beginsWith: 'abc' } } => begins_with(x, :value0) (where :value0 = 'abc')

Type declaration

  • $beginsWith: string

Generated using TypeDoc