Sha256: 90b6e974ed759ade70e843c91415ba65180aaa4051dbe11891e20f31421fb7f0

Contents?: true

Size: 855 Bytes

Versions: 1

Compression:

Stored size: 855 Bytes

Contents

module Neo4j::ActiveNode::Initialize
  extend ActiveSupport::Concern
  include Neo4j::TypeConverters

  # called when loading the node from the database
  # @param [Neo4j::Node] persisted_node the node this class wraps
  # @param [Hash] properties of the persisted node.
  def init_on_load(persisted_node, properties)
    @_association_attributes = self.class.extract_association_attributes!(properties)
    @_persisted_obj = persisted_node
    changed_attributes && changed_attributes.clear
    @attributes = attributes.merge(properties.stringify_keys)
    self.default_properties=properties
    @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


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
neo4j-3.0.0.rc.3 lib/neo4j/active_node/initialize.rb