Skip to contents

Standalone wrapper for client$fhir$resolve(). See FhirResource for full parameter documentation.

Usage

fhir_resolve(client, ...)

Arguments

client

An OMOPHubClient instance.

...

Arguments passed to FhirResource$resolve().

Value

A list with input and resolution.

Examples

if (FALSE) { # \dontrun{
client <- OMOPHubClient$new(api_key = Sys.getenv("OMOPHUB_API_KEY"))
fhir_resolve(
  client,
  system = "http://snomed.info/sct",
  code = "44054006",
  resource_type = "Condition"
)
} # }