MCPcopy Index your code
hub / github.com/TanStack/db / isUndefined

Function isUndefined

packages/db/src/query/builder/functions.ts:251–253  ·  view source on GitHub ↗
(value: ExpressionLike)

Source from the content-addressed store, hash-verified

249
250// Null/undefined checking functions
251export function isUndefined(value: ExpressionLike): BasicExpression<boolean> {
252 return new Func(`isUndefined`, [toExpression(value)])
253}
254
255export function isNull(value: ExpressionLike): BasicExpression<boolean> {
256 return new Func(`isNull`, [toExpression(value)])

Callers 5

createJoinTestsFunction · 0.85
createGroupByTestsFunction · 0.85
createOrderByTestsFunction · 0.85
createWhereTestsFunction · 0.85
select.test.tsFile · 0.85

Calls 1

toExpressionFunction · 0.85

Tested by 4

createJoinTestsFunction · 0.68
createGroupByTestsFunction · 0.68
createOrderByTestsFunction · 0.68
createWhereTestsFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…