Last active
August 29, 2015 14:06
-
-
Save andreasronge/e4ba557fb061eae534bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Human | |
include Neo4j::ActiveNode | |
property :name | |
# A human can have outgoing relationships of type pets to animals | |
# The name of the generated accessor method will be the same as the relationship type: pets | |
has_many :out, :pets, type: :pets, model_class: :Animal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment