We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 232e1ec commit 94df556Copy full SHA for 94df556
src/extractors/BaseFHIRExtractor.js
@@ -18,6 +18,7 @@ class BaseFHIRExtractor extends Extractor {
18
19
/* eslint-disable class-methods-use-this */
20
// Use context to get PatientId by default; common need across almost all extractors
21
+ // NOTE: Async because other extractors that extend this may need to make async lookups in the future
22
async parametrizeArgsForFHIRModule({ mrn, context }) {
23
const patient = getPatientFromContext(mrn, context);
24
return { patient: patient.id };
0 commit comments