RemoveIndex
Removes an existing index.
Parameters
- index_type: Specifies if the index if for entities or connections.
- class: Specifies the class of the entity/connection.
- property_key: Specifies the name of the indexed property.
Details
The matches are case sensitive for all the parameters.
The index_type parameter can be either "entity" or "connection".
Examples
Delete the index for the "name" property for entities of the class "Person":
[{
"RemoveIndex": {
"index_type": "entity",
"class": "Person",
"property_key": "name"
}
}]