hapifhir / hapi-fhir-jpaserver-starter

Apache License 2.0
395 stars 1.05k forks source link

Error when using $expand with property "parent" filter. #715

Open tayeb83 opened 3 months ago

tayeb83 commented 3 months ago

I'm doing an $expand using a filter that uses a property "parent":

EX : { "filter": [ { "property": "parent", "op": "=", "value": "J01CA" } ], "system": "http://graphe.red.net/referentiel-atc", "version": "2022-08" }

But when I try to run an $expand, I get an error "HAPI-0895: Invalid filter, property parent is LOINC-specific and cannot be used with system..."

How this can be resolved since the parent property is defined in the standard : http://hl7.org/fhir/R4B/codesystem-concept-properties.html#child

Thanks.