How do I update an existing property of a node in a graph using Gremlin?
The following method creates two properties "timestamp" with 2 different values, instead of updating the existing property "timestamp":
ContentGraph.g.addV('Filter').property('timestamp', new Date());
ContentGraph.g.V().hasLabel('Filter').property('timestamp', new Date());