Skip to content

Commit

Permalink
#18 WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
wuetherich committed Feb 3, 2020
1 parent 742c6a6 commit 2172c06
Show file tree
Hide file tree
Showing 18 changed files with 1,285 additions and 1,049 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import io.codekontor.slizaa.hierarchicalgraph.core.model.AbstractHGDependency;
import io.codekontor.slizaa.hierarchicalgraph.core.model.HGAggregatedDependency;
import io.codekontor.slizaa.hierarchicalgraph.core.model.HGCoreDependency;
import io.codekontor.slizaa.hierarchicalgraph.core.model.HGProxyDependency;

/**
*
Expand Down Expand Up @@ -54,4 +55,8 @@ public String getType() {
((HGCoreDependency) _hgDependency).getType() :
AGGREGATED_DEPENDENCY_TYPE;
}

public boolean isProxyDependency() {
return _hgDependency instanceof HGProxyDependency;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ type Dependency {
sourceNode: Node!
targetNode: Node!
type: String!
weight: Int
weight: Int!
isProxyDependency: Boolean!
}

type DependencyMatrix {
Expand Down
Loading

0 comments on commit 2172c06

Please sign in to comment.