I've got this entity class:
When I try to load an entity from the database, both the longitude and latitude values are 0.0. Is there something else I need to do in order for these properties to be mapped correctly?
Code:
@NodeEntity
public class Location {
@GraphId
private long id;
private float latitude;
private float longitude;
}