framallo/movies-with-neo4j

View on GitHub
app/models/acted_in.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ActedIn
  include Neo4j::ActiveRel

  from_class :Person
  to_class :Movie

  property :roles

  def rel_type
    type
  end
end