Class: Gremlin2Dot::Edge
- Inherits:
-
Hash
- Object
- Hash
- Gremlin2Dot::Edge
- Defined in:
- lib/gremlin2dot/data_model.rb
Instance Method Summary collapse
- #id ⇒ Object
- #inspect ⇒ Object
- #inV ⇒ Object
- #inVLabel ⇒ Object
- #label ⇒ Object
- #outV ⇒ Object
- #outVLabel ⇒ Object
- #properties ⇒ Object
Instance Method Details
#id ⇒ Object
4 |
# File 'lib/gremlin2dot/data_model.rb', line 4 def id ; self['id'] ; end |
#inspect ⇒ Object
11 |
# File 'lib/gremlin2dot/data_model.rb', line 11 def inspect ; "#<#{self.class.name} #{super}>" ; end |
#inV ⇒ Object
8 |
# File 'lib/gremlin2dot/data_model.rb', line 8 def inV ; self['inV'] ; end |
#inVLabel ⇒ Object
6 |
# File 'lib/gremlin2dot/data_model.rb', line 6 def inVLabel ; self['inVLabel'] ; end |
#label ⇒ Object
5 |
# File 'lib/gremlin2dot/data_model.rb', line 5 def label ; self['label'] ; end |
#outV ⇒ Object
9 |
# File 'lib/gremlin2dot/data_model.rb', line 9 def outV ; self['outV'] ; end |
#outVLabel ⇒ Object
7 |
# File 'lib/gremlin2dot/data_model.rb', line 7 def outVLabel ; self['outVLabel'] ; end |
#properties ⇒ Object
10 |
# File 'lib/gremlin2dot/data_model.rb', line 10 def properties ; self['properties'] || {} ; end |