Method: Frodo::Entity#links

Defined in:
lib/frodo/entity.rb

Links to other Frodo entitites



119
120
121
122
123
124
125
126
# File 'lib/frodo/entity.rb', line 119

def links
  @links ||= schema.navigation_properties[name].map do |nav_name, details|
    [
      nav_name,
      { type: details.nav_type, href: "#{id}/#{nav_name}" }
    ]
  end.to_h
end