Problem
I am using gremlin-python and When I perform:
edge = g.E().valueMap(True).limit(1).toList()
I get, for example,
print(edge[0]) would give
{<T.id: 1>: 68, <T.label: 4>: 'belongsTo'....
My own fields have string keys but for id and label fields, I do not know how to specify the keys. Supplying a string version "<T.id: 1>" does not work.