module FHIR::Sections::Search

Public Instance Methods

search_all(options = {}, format = @default_format) click to toggle source
# File lib/fhir_client/sections/search.rb, line 34
def search_all(options = {}, format = @default_format)
  options[:format] = format
  search(nil, options, format)
end
search_existing(klass, id, options = {}, format = @default_format) click to toggle source

It does not appear that this is part of the specification (any more?) Investigate removing in next major version.

# File lib/fhir_client/sections/search.rb, line 29
def search_existing(klass, id, options = {}, format = @default_format)
  options[:id] = id
  search(klass, options, format)
end