I was wondering if there is a function to remove all uniqueness constraints of a SchemaResource
, without specifying its labels and properties keys.
It may be possible by retrieving Graph.node_labels
, then iterate through them to find SchemaResource.get_indexes()
and finally calling SchemaResource.drop_uniqueness_constraint()
for each tuple.
It may also be possible with CypherResource.execute()
and a Cypher query.
Is there another option?