You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When performing an update, due to Neo4j's REST API PUT request, the node values are not preserved if not present in the update values. Nothing we can do about that one, but my guess is that keymaker is attempting to insert all the property values of the class but given the code:
it would set the property to nil if not present in the attrs passed (process_attr(property, attrs[property])). Therefore probably a change to the following:
When performing an update, due to Neo4j's REST API PUT request, the node values are not preserved if not present in the update values. Nothing we can do about that one, but my guess is that keymaker is attempting to insert all the property values of the class but given the code:
it would set the property to nil if not present in the attrs passed (process_attr(property, attrs[property])). Therefore probably a change to the following:
this at least inserts current values and replaces current values defined in the passed attrs.
The text was updated successfully, but these errors were encountered: