In Neo4j, if I delete an indexed node do I have to remove that node from the index first or will the index be updated automatically?
Here is a small (untested) example:
val index = graphDb.index()
val someIdx = index.forNodes("someIdx")
val someNode = graphDb.createNode()
someIdx.add(someNode, "key", "value")
And then:
//remove from someIdx???
someNode.delete()