Guides
Conditional Selects
When building dynamic queries, you often need to conditionally select columns based on runtime conditions. This guide covers the best practices for handling conditional selects while maintaining type safety.
The Challenge
Consider this common scenario:
Common Pitfalls
❌ Incorrect Approach: Reassigning Query
Why this fails:
- The query's type gets downcast when reassigned
- Return type doesn't include conditional columns
- TypeScript can't track the conditional type changes
✅ Simple Solution: Separate Returns
For a single condition, you can use separate return statements:
Limitations:
- Code complexity grows exponentially with multiple conditions
- Requires separate branches for each combination
- Not maintainable for complex queries
Recommended Solution: The $if Method
Use the $if
method for type-safe conditional selects:
Benefits
- Type-safe: conditional columns are correctly typed as optional
- Scales well with multiple conditions
- Clean and maintainable code
Multiple Conditions Example
Important Notes
-
Query Builder Types:
select
,returning
,innerJoin
change the query builder typewhere
,groupBy
,orderBy
don't affect the type
-
Optional Fields:
- Fields selected in
$if
are always optional in the return type - This reflects runtime uncertainty about selected columns
- Fields selected in
-
Type Safety:
$if
maintains type safety without code complexity- Return types accurately reflect possible selections