When some note deletes, attached replies are deleted too.
@ManyToOne(type => Note, {
onDelete: 'CASCADE'
})
@JoinColumn()
public reply: Note | null;
deleted notes should be displayed as (deleted) and should not affect replies (should not do cascade deletion)
whether it is remote or not, notes replying to deleted all deletes by cascading.
v11
v10 does well
I have heard that @syuilo says that this is a feature.
@tamaina If It is really so please mark this issue as closed
FYI: https://github.com/syuilo/misskey/pull/4572#issuecomment-478474515 and below. (I'm sorry about that discussed them in Japanese!)
The soft deletion was postponed because the implementation was difficult. It may be implemented in the future.