メソッドmapの pg-promiseの例を見ていきます。
// Build a list of active users, each with the list of user events:
db.task(t => {
return t.map('SELECT id FROM Users WHERE status = $1', ['active'], user => {
return t.any('SELECT * FROM Events WHERE userId = $1', user.id)
.then(events=> {
user.events = events;
return user;
});
}).then(t.batch);
})
.then(data => {
// success
})
.catch(error => {
// error
});
Event
エンティティが eg と 1 対多の関係にあり、それぞれに接続されているCars
すべてを一覧表示したいとします。必要なオブジェクトが 1 レベル以上の深さである場合、どのようにmap関数を使用できますか?cars
event
私が望む結果は次のようになります。
[{
//This is a user
id: 2,
first_name: "John",
last_name: "Doe",
events: [{
id: 4,
type: 'type',
cars: [{
id: 4,
brand: 'bmw'
}]
}]
}]