edgedb-ui
edgedb-ui copied to clipboard
Feature request: Show backlink in UI schema's Graph
Hello, say we have a schema following:
type Person {
name: str;
multi likeMovies: Movie
}
type Movie {
name: str;
directedBy: Person;
}
type ClassRoom{
name: str;
multi students: Person;
}
Now Here is graph in ui
But I want to see how many backlink link to Person, could it should all the link point to Person at the same time I select Person?
such as
I think it is very important to let us view the whole relationship of Person AT A GLANCE. Thanks.