(value: ExpressionLike)
| 253 | } |
| 254 | |
| 255 | export function isNull(value: ExpressionLike): BasicExpression<boolean> { |
| 256 | return new Func(`isNull`, [toExpression(value)]) |
| 257 | } |
| 258 | |
| 259 | export function inArray( |
| 260 | value: ExpressionLike, |
searching dependent graphs…