apoc.uuid
| Qualified Name | Type | 
|---|---|
CALL apoc.uuid.install(databaseName, label, $config) | eventually adds the uuid transaction handler for the provided   | 
Procedure Deprecated  | 
CALL apoc.uuid.drop(label, databaseName) yield label, installed, properties | eventually removes previously added UUID handler and returns uuid information  | 
Procedure  | 
CALL apoc.uuid.dropAll(databaseName) yield label, installed, properties | eventually removes all previously added UUID handlers and returns uuids' information  | 
Procedure  | 
CALL apoc.uuid.install(label, {addToExistingNodes: true/false, uuidProperty: 'uuid'}) yield label, installed, properties, batchComputationResult | it will add the uuid transaction handler
for the provided   | 
Procedure  | 
CALL apoc.uuid.list() yield label, installed, properties | provides a list of all the uuid handlers installed with the related configuration  | 
Procedure  | 
CALL apoc.uuid.remove(label) yield label, installed, properties | remove previously added uuid handler and returns uuid information. All the existing uuid properties are left as-is  | 
Procedure Deprecated  | 
CALL apoc.uuid.removeAll() yield label, installed, properties | it removes all previously added uuid handlers and returns uuids information. All the existing uuid properties are left as-is  | 
Procedure Deprecated  | 
CALL apoc.uuid.setup(label, databaseName, $config) | eventually adds the uuid transaction handler for the provided   | 
Procedure  | 
CALL apoc.uuid.show(databaseName) | it lists all eventually installed UUID handler for a database  | 
Procedure  |