Method: OData4::Service#execute

Defined in:
lib/odata4/service.rb

#execute(url_chunk, options = {}) ⇒ OData4::Service::Response

Execute a request against the service

Parameters:

  • url_chunk (to_s)

    string to append to service URL

  • options (Hash) (defaults to: {})

    additional request options

Returns:



143
144
145
# File 'lib/odata4/service.rb', line 143

def execute(url_chunk, options = {})
  Request.new(self, url_chunk, options).execute
end