VA
Size: a a a
VA
NS
IB
VK
VK
S
const users = await this.userModel
.query()
.select<User>(['name'])
.where<User>({ name: 'Name' })
.orderBy<User>('name', 'desc')
.withGraphFetched('posts')
.modifyGraph('posts', q => q.select<Post>(['title']));
С
const users = await this.userModel
.query()
.select<User>(['name'])
.where<User>({ name: 'Name' })
.orderBy<User>('name', 'desc')
.withGraphFetched('posts')
.modifyGraph('posts', q => q.select<Post>(['title']));
S
S
С
S
С
VK
VK
VK
С
С
S
VK
A