Graph relation bug on Permify Playground Visualizer, according to the model below the edit relations parent.admin and owner on the Visualizer should be connected with or not and
entity user {}
entity organization {
// organizational roles
relation admin @user
relation member @user
}
entity repository {
// represents repositories parent organization
relation parent @organization
// represents owner of this repository
relation owner @user
// permissions
action edit = parent.admin or owner
action delete = owner
}

Graph relation bug on Permify Playground Visualizer, according to the model below the edit relations parent.admin and owner on the Visualizer should be connected with or not and