apoc.atomic

Qualified Name Type

apoc.atomic.add(container Any, propertyName String, number Number, retryAttempts Integer) - sets the given property to the sum of itself and the number value. The procedure then sets the property to the returned sum.

Procedure

apoc.atomic.concat(container Any, propertyName String, string String, retryAttempts Integer) - sets the given property to the concatenation of itself and the string value. The procedure then sets the property to the returned string.

Procedure

apoc.atomic.insert(container Any, propertyName String, position Integer, value Any, retryAttempts Integer) - inserts a value at position into the array value of a property. The procedure then sets the result back on the property.

Procedure

apoc.atomic.remove(container Any, propertyName String, position Integer, retryAttempts Integer) - removes the element at position from the array value of a property. The procedure then sets the property to the resulting array value.

Procedure

apoc.atomic.subtract(container Any, propertyName String, number Number, retryAttempts Integer) - sets the property of a value to itself minus the given number value. The procedure then sets the property to the returned sum.

Procedure

apoc.atomic.update(container Any, propertyName String, operation String, retryAttempts Integer) - updates the value of a property with a Cypher operation.

Procedure