You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Occasionally, medications will be embedded in a different place in the MedicationRequest resource. Currently, the ETL is not fully extracting the required values. Once it is, we should extract display values for this dataset when building medication tables.
To see the state of the data, run the following query:
with contained_table as(
SELECT t.contained, medicationreference
FROM "cumulusdb-rnr2cmuwjxfk"."medicationrequest" as mr, --cerner
unnest (mr.contained) as t(contained)
where cardinality(mr.contained ) >0
)
select * from contained_table as ct
where ct.contained.resourcetype='Medication'
The text was updated successfully, but these errors were encountered:
Occasionally, medications will be embedded in a different place in the MedicationRequest resource. Currently, the ETL is not fully extracting the required values. Once it is, we should extract display values for this dataset when building medication tables.
To see the state of the data, run the following query:
The text was updated successfully, but these errors were encountered: