(self, graph_def, conn=None)
| 40 | |
| 41 | class Graph: |
| 42 | def __init__(self, graph_def, conn=None) -> None: |
| 43 | self._schema = GraphSchema() |
| 44 | self._schema.from_graph_def(graph_def) |
| 45 | self._conn: Connection = conn |
| 46 | self._schema._conn = conn |
| 47 | |
| 48 | def schema(self): |
| 49 | return self._schema |
nothing calls this directly
no test coverage detected