Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Report view tree of dependencies #3460

Open
ymarcon opened this issue May 2, 2019 · 3 comments
Open

Report view tree of dependencies #3460

ymarcon opened this issue May 2, 2019 · 3 comments
Assignees
Labels
new feature pinned Stale bot ignored
Milestone

Comments

@ymarcon
Copy link
Member

ymarcon commented May 2, 2019

Currently a view only reports the tables from which it directly depends on. It would be good to have all the hierarchy (view depends on a view that depends on a view etc.) ascending and descending.

The corresponding web service would be:

GET /datasource/xxx/view/yyy/tree

And the tree of dependencies DTO would look like:

message ViewNodeDto {
  required string name = 1;
  required string datasource = 2;
  optional bool inner = 3;
  repeated ViewNodeDto parent = 4;
  repeated ViewNodeDto child = 5;
}

It would be good to display it as a "UML" graph using this JS library for instance:
https://github.com/skanaar/nomnoml

@ymarcon ymarcon added this to the 2.14.0 milestone May 2, 2019
@kazoompa
Copy link
Member

kazoompa commented May 3, 2019

We could also do this through R (https://github.com/javierluraschi/nomnoml) as a plugin.

@kazoompa
Copy link
Member

kazoompa commented May 3, 2019

This also looks interesting and also has a R support:: http://js.cytoscape.org/

@stale
Copy link

stale bot commented Jul 2, 2019

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix label Jul 2, 2019
@kazoompa kazoompa removed the wontfix label Jul 2, 2019
@ymarcon ymarcon added the pinned Stale bot ignored label Jul 2, 2019
@ymarcon ymarcon modified the milestones: 2.14.0, 2.15.0 Jul 2, 2019
@ymarcon ymarcon modified the milestones: 2.15.0, 2.16.0 Aug 16, 2019
@ymarcon ymarcon modified the milestones: 2.16.0, 2.17.0 May 11, 2020
@ymarcon ymarcon modified the milestones: 3.0.0, 3.1.0 Jun 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new feature pinned Stale bot ignored
Projects
None yet
Development

No branches or pull requests

2 participants