Sha256: 6cc31eacf8c28bdfc98846ff2bab71d1ea7b7c200e2ef36327ab65600b4ae0a9
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
module Neo4j::ActiveRel module Initialize extend ActiveSupport::Concern attr_reader :_persisted_obj # called when loading the rel from the database # @param [Hash] properties properties of this relationship # @param [Neo4j::Relationship] start_node the starting node in the relationship. # @param [Neo4j::Relationship] end_node the ending node in the relationship # @param [String] type the relationship type def init_on_load(persisted_rel, from_node_id, to_node_id, type) @_persisted_obj = persisted_rel @rel_type = type changed_attributes && changed_attributes.clear @attributes = attributes.merge(persisted_rel.props.stringify_keys) load_nodes(from_node_id, to_node_id) self.default_properties = persisted_rel.props @attributes = self.class.declared_property_manager.convert_properties_to(self, :ruby, @attributes) end # Implements the Neo4j::Node#wrapper and Neo4j::Relationship#wrapper method # so that we don't have to care if the node is wrapped or not. # @return self def wrapper self end end end
Version data entries
4 entries across 4 versions & 1 rubygems