Class: RailsGraph::Graph::Relationships::Attribute
- Inherits:
-
RailsGraph::Graph::Relationship
- Object
- Entity
- RailsGraph::Graph::Relationship
- RailsGraph::Graph::Relationships::Attribute
- Defined in:
- lib/rails_graph/graph/relationships/attribute.rb
Instance Attribute Summary
Attributes inherited from RailsGraph::Graph::Relationship
Attributes inherited from Entity
Instance Method Summary collapse
-
#initialize(source, target) ⇒ Attribute
constructor
A new instance of Attribute.
Methods inherited from RailsGraph::Graph::Relationship
Methods inherited from Entity
Constructor Details
#initialize(source, target) ⇒ Attribute
Returns a new instance of Attribute.
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/rails_graph/graph/relationships/attribute.rb', line 9 def initialize(source, target) super( source: source, target: target, label: "HasAttribute", name: target.name, properties: { primary_key: source.properties[:primary_key] == target.name } ) end |