MCPcopy Create free account
hub / github.com/alibaba/GraphScope / to_directed

Method to_directed

python/graphscope/framework/graph.py:467–470  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

465 return ResultDAGNode(self, op)
466
467 def to_directed(self):
468 op = dag_utils.to_directed(self)
469 graph_dag_node = GraphDAGNode(self._session, op)
470 return graph_dag_node
471
472 def to_undirected(self):
473 op = dag_utils.to_undirected(self)

Callers

nothing calls this directly

Calls 2

GraphDAGNodeClass · 0.85
to_directedMethod · 0.45

Tested by

no test coverage detected