Skip to main content

overview

Though the Dream ORM exclusively provides access to the database layer of your application, providing tools for abstracting those relational complexities into elegant domains, it also is aware that often you are going to want to serialize these models into different shapes, depending on the endpoint being hit, or other circumstances determined by your application logic.

To enable multiple potential serialization shapes, dream provides a simple pattern for defining such connections:

class User extends ApplicationModel {
public get serializers() {
return {
default: 'UserSerializer',
summary: 'UserSummarySerializer',
admin: 'AdminUserSerializer',
} as const
}
}

In psychic, when a dream is encountered in the process of serialization, the dream is serialized using its default serializer, unless a different serializer is specified explicitly:

class UsersController extends AuthedController {
public async show() {
const user = await User.findOrFail(this.castParam('id', 'bigint'))
this.ok(user, { serializer: 'admin' })
}
}
info