We have an edge between two vertices in datastax graph 6.7.4.
How can I remove the edge from the schema itself?
I tried this:
schema.edgeLabel("belongswihin").connection("poi","region").drop()
but there is no drop
method to delete an edge like this.
I can't run:
schema.edgeLabel("belongswithin").drop()
as I am having the same edge being used between the other two vertices which I don't want to drop?