I'm running into a blocking issue.
In my DSE studio i started to modify my schema :
schema.propertyKey("longitude").Double().single().ifNotExists().create()
schema.propertyKey("latitude").Double().single().ifNotExists().create()
schema.vertexLabel("Locality").properties('longitude','latitude').add()
Then I check it using schema.vertexLabel("Locality").describe()
:
schema.vertexLabel("Locality").properties([...], "longitude", "latitude").create()
So that's OK.
But when I try to add a vertex :
g.addV(label, 'Locality', [...], 'longitude', 47.3510905, 'latitude', 0.6622524)
I get the following error :
org.apache.tinkerpop.gremlin.driver.exception.ResponseException: Undefined column name latitude
I suspect the Cassandra structure not to be synced with the graph schema.
Do you have a solution to solve this issue ?
Precision: I'm using DSE 5.1.