Sha256: 2738ab6045c7e8a04df3a9b75801e3332eacd70b50c005c024372d788d0a1d25
Contents?: true
Size: 1.08 KB
Versions: 7
Compression:
Stored size: 1.08 KB
Contents
module Neo4j::ActiveRel module Initialize extend ActiveSupport::Concern include Neo4j::TypeConverters 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 = convert_properties_to :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
7 entries across 7 versions & 1 rubygems