CQL Execution FHIR Data Source
This project establishes a FHIR-based data source module for use with the CQL Execution Engine. Currently,
FHIR 1.0.2 (DSTU2), FHIR 3.0.0 (STU3), FHIR 4.0.0 ,and FHIR 4.0.1 (R4) are supported.
Setting Up the Environment
To use this project, you should perform the following steps:
- Install Node.js
- Install Yarn
- Execute the following from this project's root directory:
yarn
Using the FHIR Patient Data Source
The FHIR Data Source expects each patient to be represented as a single FHIR Bundle containing all of the patient's
relevant data. The FHIR Data Source does not query FHIR servers, but rather, expects the Bundles to be passed to
it.
The following is a simple example of how it would be used to execute over two patients:
const cqlfhir = require('cql-exec-fhir');
const patientSource = cqlfhir.PatientSource.FHIRv102();
patientSource.loadBundles([patient01, patient02]);
const results = executor.exec(patientSource);
Using the FHIRWrapper
If you are passing in individual FHIR resources to the execution engine as parameters, you can use FHIRWrapper
to convert the raw json FHIR resources into FHIRObjects that work with the execution engine.
Example:
const cqlfhir = require('cql-exec-fhir');
const fhirWrapper = cqlfhir.FHIRWrapper.FHIRv102();
const conditionRawResource = { "resourceType": "Condition", "id": "f201", "clinicalStatus": "active", ... }
const conditionFhirObject = fhirWrapper.wrap(conditionResource)
Linting the Code
To encourage quality and consistency within the code base, all code should pass eslint without any warnings. Many text editors can be configured to automatically flag eslint violations. We also provide an npm script for running eslint on the project. To run eslint, execute the following command:
$ yarn lint