We have an edge between two vertices in datastax graph(DSE 6.7).
How can I remove the edge from the schema itself?
I tried:
schema.edgeLabel("belongswithin").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?