Aidbox / Issues

Issue tracker for Aidbox FHIR backend by Health Samurai
7 stars 0 forks source link

Upgrade fhirpath to 2.0.0 #448

Open ruscoder opened 3 years ago

ruscoder commented 3 years ago

Fhirpath 2.0.0 has been released at the beginning of 2020.

Fhirpath js already updated grammar: see diff https://github.com/HL7/fhirpath.js/commit/b68886743e3ceffca34e9e0a1ff49dc141f892ac

Please consider updating inlined implementation of fhirpath in Aidbox

Nesmeshnoy commented 2 years ago

@ruscoder could you please describe how this improvement will benefit Aidbox users?

github-actions[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had activity in the last 30 days. Please make sure you've added all the necessary details including clear description and severity level.

github-actions[bot] commented 2 years ago

This issue has been automatically closed because it has not had activity in the last 60 days. If this issue is still valid, re-open the issue and let us know.

ruscoder commented 1 year ago

@Nesmeshnoy sorry for the long response. We use three versions of FhirPath:

Fhirpath.js uses 2.0.0, while py and clj still use obsolete versions. For example, it's impossible to access Patient.text.div in a multiplatform way, e.g.:

Patient.text.`div`

in js, but Patient.text."div" in py/clj.