How to execute gremlin query with mogwai
问题 Im trying to query a titan db 0.5.4 via mogwai, but when I run the following script i get the error: rexpro.exceptions.RexProScriptException: transaction is not open and I found the same question here P.S there is no tag for mogwai script: #!/usr/bin/env python3 from mogwai.connection import execute_query, setup con = setup('127.0.0.1', graph_name="bio4j", username="re", password="re") results = execute_query("2 * a",params={"a":2}, connection= con) print(results) results = execute_query(