// typeorm set relation (One-To-One-Relation) // "Video" is the main table // "channel" is the relation variable await connection.createQueryBuilder() .relation(Video, "channel") .of(Number(id)) // video id .set(Number(channelId))