edgedb-ui icon indicating copy to clipboard operation
edgedb-ui copied to clipboard

Feature request: Show backlink in UI schema's Graph

Open AnsonHwang86 opened this issue 2 years ago • 0 comments

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

image

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

image

I think it is very important to let us view the whole relationship of Person AT A GLANCE. Thanks.

AnsonHwang86 avatar Jul 28 '23 09:07 AnsonHwang86