extractFieldPath

Function: extractFieldPath()

ts
function extractFieldPath(expr): FieldPath | null;
function extractFieldPath(expr): FieldPath | null;

Defined in: packages/db/src/query/expression-helpers.ts:107

Extracts the field path from a PropRef expression. Returns null for non-ref expressions.

Parameters

expr

BasicExpression

The expression to extract from

Returns

FieldPath | null

The field path array, or null

Example

typescript
const field = extractFieldPath(someExpression)
// Returns: ['product', 'category']
const field = extractFieldPath(someExpression)
// Returns: ['product', 'category']
Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.

Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.