apoc.create
Qualified Name | Type |
---|---|
apoc.create.addLabels( [node,id,ids,nodes], ['Label',…]) - adds the given labels to the node or nodes |
Procedure |
apoc.create.node(['Label'], {key:value,…}) - create node with dynamic labels |
Procedure |
apoc.create.nodes(['Label'], [{key:value,…}]) create multiple nodes with dynamic labels |
Procedure |
apoc.create.relationship(person1,'KNOWS',{key:value,…}, person2) create relationship with dynamic rel-type |
Procedure |
apoc.create.removeLabels( [node,id,ids,nodes], ['Label',…]) - removes the given labels from the node or nodes |
Procedure |
apoc.create.removeProperties( [node,id,ids,nodes], [keys]) - removes the given properties from the nodes(s) |
Procedure |
apoc.create.removeRelProperties( [rel,id,ids,rels], [keys]) - removes the given properties from the relationship(s) |
Procedure |
apoc.create.setLabels( [node,id,ids,nodes], ['Label',…]) - sets the given labels, non matching labels are removed on the node or nodes |
Procedure |
apoc.create.setProperties( [node,id,ids,nodes], [keys], [values]) - sets the given properties on the nodes(s) |
Procedure |
apoc.create.setProperty( [node,id,ids,nodes], key, value) - sets the given property on the node(s) |
Procedure |
apoc.create.setRelProperties( [rel,id,ids,rels], [keys], [values]) - sets the given properties on the relationship(s) |
Procedure |
apoc.create.setRelProperty( [rel,id,ids,rels], key, value) - sets the given property on the relationship(s) |
Procedure |
apoc.create.uuids(count) yield uuid - creates 'count' UUIDs |
Procedure |
apoc.create.vNode(['Label'], {key:value,…}) returns a virtual node |
Procedure |
apoc.create.vNodes(['Label'], [{key:value,…}]) returns virtual nodes |
Procedure |
apoc.create.vPattern({_labels:['LabelA'],key:value},'KNOWS',{key:value,…}, {_labels:['LabelB'],key:value}) returns a virtual pattern |
Procedure |
apoc.create.vPatternFull(['LabelA'],{key:value},'KNOWS',{key:value,…},['LabelB'],{key:value}) returns a virtual pattern |
Procedure |
apoc.create.vRelationship(nodeFrom,'KNOWS',{key:value,…}, nodeTo) returns a virtual relationship |
Procedure |
apoc.create.uuid() - creates an UUID |
Function |
apoc.create.vNode(['Label'], {key:value,…}) returns a virtual node |
Function |
apoc.create.vRelationship(nodeFrom,'KNOWS',{key:value,…}, nodeTo) returns a virtual relationship |
Function |