Closed
Description
The title says it all. I use the latest version of the java driver and experienced that the update method for vertexes does not change the revision in the model. My model extends an abstract model that has the key fields declared as follows:
@DocumentField(DocumentField.Type.ID)
protected String id;
@DocumentField(DocumentField.Type.KEY)
protected String key;
@DocumentField(DocumentField.Type.REV)
protected String revision;
@DocumentField(DocumentField.Type.FROM)
private String from;
@DocumentField(DocumentField.Type.TO)
private String to;