Introduction to Query Builder
A TypeScript toolkit for building self-hostable backend SDKs. Double Tie provides a complete set of tools to help developers create type-safe, self-hostable backend services that can be distributed as npm packages.
Core Types
DatabaseConfig
Configuration options for creating a database instance.
Example:
MigratorOptions
Options for configuring database migrations.
Example:
Transaction Types
TransactionCallback
Function type for executing operations within a transaction.
TransactionResponse
Object passed to transaction callbacks with the transaction instance and afterCommit hook.
AfterCommitCallback
Function to be executed after a transaction is successfully committed.
Example:
Model Registration
ModelRegistry
Registry for defining and storing model definitions.
Example:
Database Interface
The core Database
interface provides all database operations and utilities. It includes:
- Dialect-specific methods (
isSqlite
,isMysql
,isPostgres
) - Model creation and registration methods
- Transaction support
- Query builders for SELECT, INSERT, UPDATE, DELETE operations
- Utility methods for common database tasks
Key Methods
Examples:
Type Utilities
The Database types use several advanced TypeScript utilities to provide enhanced type-safety:
DrainOuterGeneric<T>
- Helps with generic type handlingDeepPartial<T>
- Creates a deeply optional version of a type- Type constraints like
TTableName extends keyof TDatabaseSchema & string
These utilities ensure you get proper type checking and autocompletion when using the query builder.
Extending Type Definitions
When using the query builder with your database schema, you'll define your own schema types:
For more information on using the query builder, refer to the main README documentation and example code.