awswrangler.neptune.execute_gremlin

awswrangler.neptune.execute_gremlin(client: NeptuneClient, query: str) DataFrame

Return results of a Gremlin traversal as pandas DataFrame.

Parameters:
  • client (NeptuneClient) – instance of the neptune client to use

  • query (str) – The gremlin traversal to execute

Return type:

DataFrame

Returns:

Results as Pandas DataFrame

Examples

Run a Gremlin Query

>>> import awswrangler as wr
>>> client = wr.neptune.connect(neptune_endpoint, neptune_port, iam_enabled=False)
>>> df = wr.neptune.execute_gremlin(client, "g.V().limit(1)")