Commit 54deb2d 1 parent 993ff22 commit 54deb2d Copy full SHA for 54deb2d
File tree 1 file changed +8
-4
lines changed
datahub-web-react/src/app/lineage
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,13 @@ export type LineageExpandParams = {
35
35
36
36
export type FetchedEntity = {
37
37
urn : string ;
38
- name : string ; // name to be shown on expansion if available
38
+ name : string ;
39
+ // name to be shown on expansion if available
39
40
expandedName ?: string ;
40
41
type : EntityType ;
41
42
subtype ?: string ;
42
- icon ?: string ; // children?: Array<string>;
43
+ icon ?: string ;
44
+ // children?: Array<string>;
43
45
upstreamChildren ?: Array < EntityAndType > ;
44
46
upstreamRelationships ?: Array < LineageRelationship > ;
45
47
numUpstreamChildren ?: number ;
@@ -60,13 +62,15 @@ export type FetchedEntity = {
60
62
61
63
export type NodeData = {
62
64
urn ?: string ;
63
- name : string ; // name to be shown on expansion if available
65
+ name : string ;
66
+ // name to be shown on expansion if available
64
67
expandedName ?: string ;
65
68
type ?: EntityType ;
66
69
subtype ?: string ;
67
70
children ?: Array < NodeData > ;
68
71
unexploredChildren ?: number ;
69
- icon ?: string ; // Hidden children are unexplored but in the opposite direction of the flow of the graph.
72
+ icon ?: string ;
73
+ // Hidden children are unexplored but in the opposite direction of the flow of the graph.
70
74
// Currently our visualization does not support expanding in two directions
71
75
countercurrentChildrenUrns ?: string [ ] ;
72
76
platform ?: DataPlatform ;
You can’t perform that action at this time.
0 commit comments