Sha256: b0216e4318ad665a770ace2498a6f70279ad447678c3bb7ddb66bc0abd960ca0

Contents?: true

Size: 1.1 KB

Versions: 70

Compression:

Stored size: 1.1 KB

Contents

module Neo4j::ActiveRel
  module Initialize
    extend ActiveSupport::Concern
    include Neo4j::Shared::Initialize

    # called when loading the rel from the database
    # @param [Neo4j::Embedded::EmbeddedRelationship, Neo4j::Server::CypherRelationship] persisted_rel properties of this relationship
    # @param [Neo4j::Relationship] from_node_id The neo_id of the starting node of this rel
    # @param [Neo4j::Relationship] to_node_id The neo_id of the ending node of this rel
    # @param [String] type the relationship type
    def init_on_load(persisted_rel, from_node_id, to_node_id, type)
      @rel_type = type
      @_persisted_obj = persisted_rel
      changed_attributes && changed_attributes.clear
      @attributes = convert_and_assign_attributes(persisted_rel.props)
      load_nodes(from_node_id, to_node_id)
    end

    def init_on_reload(unwrapped_reloaded)
      @attributes = nil
      init_on_load(unwrapped_reloaded,
                   unwrapped_reloaded.start_node_id,
                   unwrapped_reloaded.end_node_id,
                   unwrapped_reloaded.rel_type)
      self
    end
  end
end

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
neo4j-9.2.1 lib/neo4j/active_rel/initialize.rb
neo4j-9.2.0 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.8 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.7 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.6 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.5 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.4 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.3 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.2 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.1 lib/neo4j/active_rel/initialize.rb
neo4j-9.1.0 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.7 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.6 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.5 lib/neo4j/active_rel/initialize.rb
neo4j-8.3.4 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.4 lib/neo4j/active_rel/initialize.rb
neo4j-8.3.3 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.3 lib/neo4j/active_rel/initialize.rb
neo4j-8.3.2 lib/neo4j/active_rel/initialize.rb
neo4j-9.0.2 lib/neo4j/active_rel/initialize.rb