Sha256: c651504679040f20595e212dd4a3fab448f35738c34fb4760f0ad5e9809dd3a4
Contents?: true
Size: 976 Bytes
Versions: 2
Compression:
Stored size: 976 Bytes
Contents
module OData4 class Query class Result # Represents the results of executing a OData4::Query. # @api private module JSON def process_results(&block) find_entities.each do |entity_json| entity = OData4::Entity.from_json(entity_json, entity_options) block_given? ? block.call(entity) : yield(entity) end end def next_page result_json['@odata.nextLink'] end def next_page_url next_page.gsub(service.service_url, '') end def error_message result_json['error'].andand['message'] end private def result_json @result_json ||= ::JSON.parse(result.body) end def single_entity? result_json['@odata.context'] =~ /\$entity$/ end def find_entities single_entity? ? [result_json] : result_json['value'] end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
odata4-0.8.0 | lib/odata4/query/result/json.rb |
odata4-0.7.0 | lib/odata4/query/result/json.rb |