apoc.create

Qualified Name Type

apoc.create.addLabels(nodes Any, labels [String]) - adds the given labels to the given nodes.

Procedure

apoc.create.clonePathToVirtual(path Path) - takes the given path and returns a virtual representation of it.

Procedure

apoc.create.clonePathsToVirtual(paths [Path]) - takes the given paths and returns a virtual representation of them.

Procedure

apoc.create.node(labels [String], props Map<String, Any>) - creates a node with the given dynamic labels.

Procedure

apoc.create.nodes(labels [String], props [Map<String, Any>]) - creates nodes with the given dynamic labels.

Procedure

apoc.create.relationship(from Node, relType String, props Map<String, Any>, to Node) - creates a relationship with the given dynamic relationship type.

Procedure

apoc.create.removeLabels(nodes Any, labels [String]) - removes the given labels from the given node(s).

Procedure

apoc.create.removeProperties(nodes Any, keys [String]) - removes the given properties from the given node(s).

Procedure

apoc.create.removeRelProperties(rels Any, keys [String]) - removes the given properties from the given relationship(s).

Procedure

apoc.create.setLabels(nodes Any, labels [String]) - sets the given labels to the given node(s). Non-matching labels are removed from the nodes.

Procedure

apoc.create.setProperties(nodes Any, keys [String], values [Any]) - sets the given properties to the given node(s).

Procedure

apoc.create.setProperty(nodes Any, key String, value [Any]) - sets the given property to the given node(s).

Procedure

apoc.create.setRelProperties(rels Any, keys [String], values [Any]) - sets the given properties on the relationship(s).

Procedure

apoc.create.setRelProperty(rels Any, key String, value Any) - sets the given property on the relationship(s).

Procedure

apoc.create.uuids(count Integer) - returns a stream of UUIDs.

Procedure Deprecated

apoc.create.vNode(labels [String], props Map<String, Any>) - returns a virtual node.

Procedure

apoc.create.vNodes(labels [String], props [Map<String, Any>]) - returns virtual nodes.

Procedure

apoc.create.vRelationship(from Node, relType String, props Map<String, Any>, to Node) - returns a virtual relationship.

Procedure

apoc.create.virtualPath(labelsN [String],n Map<String, Any>, relType String, props Map<String, Any>, labelsM [String], m Map<String, Any>) - returns a virtual path.

Procedure

apoc.create.uuid() - creates a UUID

Function Deprecated

apoc.create.uuidBase64() - returns a UUID encoded with base64.

Function

apoc.create.uuidBase64ToHex(base64Uuid String) - takes the given base64 encoded UUID and returns it as a hexadecimal string.

Function

apoc.create.uuidHexToBase64(uuid String) - takes the given UUID represented as a hexadecimal string and returns it encoded with base64.

Function

apoc.create.virtual.fromNode(node Node, propertyNames [String]) - returns a virtual node from the given existing node.

Function

apoc.create.vNode(labels [String], props Map<String, Any>) - returns a virtual node.

Function

apoc.create.vRelationship(from Node, relType String, props Map<String, Any>, to Node) - returns a virtual relationship.

Function