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
I'd like to aggregate all records associated with a given patient together so that they can be bundled together inside a single bundle. So, to do that, the target field would need to be something like
out record.patient_id : ProcessPatient(...)
out record.patient_id: ProcessObservations(...)
and at the end of the run, each ID would contain the Patient, ResearchSubject, all Observations, all Conditions, etc. Then, inside post-processing I would translate each of those ID lists into separate bundles
Obviously the example above wouldn't work since all patient data would end up inside record.patient_id instead of the actual ID associated with each of the records' patient but I'm not seeing anything in the docs that jumps out as a way to do this in whistle itself.
The text was updated successfully, but these errors were encountered:
I'd like to aggregate all records associated with a given patient together so that they can be bundled together inside a single bundle. So, to do that, the target field would need to be something like
out record.patient_id : ProcessPatient(...)
out record.patient_id: ProcessObservations(...)
and at the end of the run, each ID would contain the Patient, ResearchSubject, all Observations, all Conditions, etc. Then, inside post-processing I would translate each of those ID lists into separate bundles
Obviously the example above wouldn't work since all patient data would end up inside record.patient_id instead of the actual ID associated with each of the records' patient but I'm not seeing anything in the docs that jumps out as a way to do this in whistle itself.
The text was updated successfully, but these errors were encountered: