Class: Contentful::Link
- Inherits:
-
BaseResource
- Object
- BaseResource
- Contentful::Link
- Defined in:
- lib/contentful/link.rb
Overview
Resource Class for Links www.contentful.com/developers/documentation/content-delivery-api/#links
Instance Attribute Summary
Attributes inherited from BaseResource
Instance Method Summary collapse
-
#resolve(client, query = {}) ⇒ Object
Queries contentful for the Resource the Link is refering to Takes an optional query hash.
Methods inherited from BaseResource
Constructor Details
This class inherits a constructor from Contentful::BaseResource
Instance Method Details
#resolve(client, query = {}) ⇒ Object
Queries contentful for the Resource the Link is refering to Takes an optional query hash
9 10 11 12 13 14 15 |
# File 'lib/contentful/link.rb', line 9 def resolve(client, query = {}) id_and_query = [(id unless link_type == 'Space')].compact + [query] client.public_send( Contentful::Support.snakify(link_type).to_sym, *id_and_query ) end |