I have a value in orientdb, which is a JSON object. Assume that JSON object is :
a = {"abc":123}
When I am sending a query using pyorient, it is not able to get this value in the select query, and hangs. In the orientdb console, this JSON object seems to be converted in some other format like
a = {abc=123}
I guess it is hanging because of the same issue. The query from pyorient is:
client.query("select a from <tablename>")
This hangs and doesn't seems to be working. Could you please help ho to parse this JSON object in pyorient?