Is Fhirpatch delete supported in Hapi fhir?
Here is the curl Im playing with on publish hapi fhir server. The expected outcome is to delete the Meta.tag where code = 'foo' but this doesn't:
curl --location --request PATCH '
http://hapi.fhir.org/baseR4/Observation/4276705' \
--header 'Content-Type: application/fhir+json' \
--data-raw '{
"resourceType": "Parameters",
"parameter": [ {
"name": "operation",
"part": [ {
"name": "type",
"valueCode": "delete"
}, {
"name": "path",
"valueString": "Observation.meta.tag.where(code='\''foo'\'').first()"
}]
} ]
}'