Skip to contents

Standalone wrapper for client$fhir$resolve_codeable_concept().

Usage

fhir_resolve_codeable_concept(client, ...)

Arguments

client

An OMOPHubClient instance.

...

Arguments passed to FhirResource$resolve_codeable_concept().

Value

See FhirResource$resolve_codeable_concept().

Examples

if (FALSE) { # \dontrun{
client <- OMOPHubClient$new(api_key = Sys.getenv("OMOPHUB_API_KEY"))
fhir_resolve_codeable_concept(
  client,
  coding = list(
    list(system = "http://snomed.info/sct", code = "44054006"),
    list(system = "http://hl7.org/fhir/sid/icd-10-cm", code = "E11.9")
  ),
  resource_type = "Condition"
)
} # }