Skip to main content

overview

In postgres, it is possible to codify relationships between various tables in your database using foreign key constraints. The migration engine used by Dream provides the references method for doing this:

export async function up(db: Kysely<any>): Promise<void> {
await db.schema
.createTable('posts')
...
.addColumn('body', 'text')
.addColumn('user_id', 'bigint', col => col.references('users.id'))
.execute()
}

Since these types of relationships can exist at the database level, Dream exposes mechanisms so they can be expressed within the model layer as well. This can be done using the BelongsTo, HasOne and HasMany associations to make those expose those relationships to your application:

class User extends ApplicationModel {
@deco.HasMany('Post')
public posts: Post[]
}

class Post extends ApplicationModel {
@deco.BelongsTo('User')
public user: User
}

Once the association is defined, you can begin using it to simplify your domain interactions:

const user = await User.first()
const post = await user.createAssociation('posts', { body: 'hello world' })

const posts = await user
.associationQuery('posts')
.where({ body: 'hello world' })
.all()
tip

There is much to learn about the power of Dream associations.