Load a graph within the session. See more information in :meth:`graphscope.load_from`.
(self, *args, **kwargs)
| 1156 | ) |
| 1157 | |
| 1158 | def load_from(self, *args, **kwargs): |
| 1159 | """Load a graph within the session. |
| 1160 | See more information in :meth:`graphscope.load_from`. |
| 1161 | """ |
| 1162 | with default_session(self): |
| 1163 | return graphscope.load_from(*args, **kwargs) |
| 1164 | |
| 1165 | @deprecated("Please use `sess.interactive` instead.") |
| 1166 | def gremlin(self, graph, params=None): |
nothing calls this directly
no test coverage detected