Im looking at the documentation for FHIR v1.6 Procedure and it looks like its possible to search by date.
My scenario is this:
performedDatetime
value (for complete procedures) i.e. status=completedperformedDatetime
value.I know how to sort these procedures by performedDatetime
using:
https://{{baseUrl}}/fhir/Procedure?_sort:desc=date
But is it possible to search for those procedures that dont have a performedDateTime
?
I have been trying it this way:
https://{{baseUrl}}/fhir/Procedure?date:missing=false
But this still returns all results.
https://{{baseUrl}}/fhir/Procedure?date=NULL
Throws an error on the server.
What am I missing here?
https://{{baseUrl}}/fhir/Procedure?date:missing=false
that's the right URL and it should work - guess you're going to have to report a bug on the server (may it not be mine!)