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

Function isNestedSelectObject

packages/db/src/query/compiler/group-by.ts:940–948  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

938}
939
940function isNestedSelectObject(value: unknown): value is Select {
941 return (
942 value != null &&
943 typeof value === `object` &&
944 !Array.isArray(value) &&
945 !(value as any).__refProxy &&
946 !isExpressionLike(value)
947 )
948}
949
950function isConditionalSelect(value: unknown): value is ConditionalSelect {
951 return (

Callers 4

containsAggregateFunction · 0.70

Calls 1

isExpressionLikeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…