A clause that translates to the $beginsWith operator. It tests to see if a string attribute begins with the specified string.
$beginsWith
It translates to the begins_with() function.
begins_with()
e.g. { x: { $beginsWith: 'abc' } } => begins_with(x, :value0) (where :value0 = 'abc')
{ x: { $beginsWith: 'abc' } }
begins_with(x, :value0)
:value0 = 'abc'
Generated using TypeDoc
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'
)