( value: ExpressionLike, array: ExpressionLike, )
| 257 | } |
| 258 | |
| 259 | export function inArray( |
| 260 | value: ExpressionLike, |
| 261 | array: ExpressionLike, |
| 262 | ): BasicExpression<boolean> { |
| 263 | return new Func(`in`, [toExpression(value), toExpression(array)]) |
| 264 | } |
| 265 | |
| 266 | export function like( |
| 267 | left: StringLike, |
searching dependent graphs…