diff --git a/tests/test_execute_query.py b/tests/test_execute_query.py index 8275eaf..a1e57c1 100644 --- a/tests/test_execute_query.py +++ b/tests/test_execute_query.py @@ -3,7 +3,9 @@ def test_execute_query(): graph = InvanaGraph("ws://localhost:8182/gremlin") - response = graph.connector.execute_query("mgmt = graph.openManagement(); mgmt.printSchema()") + # response = graph.connector.execute_query("g.addV('person').property('name', 'Rav').next()") + response = graph.connector.execute_query("g.V().limit(1).elementMap().toList()") + print("===================",response.data) assert response.status_code == 200 assert response.data is not None graph.close_connection()