This method is going to be deprecated in the future. Use :meth:`graphscope.interactive` instead.
(graph, params=None)
| 1624 | |
| 1625 | @deprecated("Please use `graphscope.interactive` instead.") |
| 1626 | def gremlin(graph, params=None): |
| 1627 | """This method is going to be deprecated in the future. |
| 1628 | Use :meth:`graphscope.interactive` instead. |
| 1629 | """ |
| 1630 | return interactive(graph, params) |
| 1631 | |
| 1632 | |
| 1633 | def interactive(graph, params=None, with_cypher=False): |
nothing calls this directly
no test coverage detected