- fhirpath version: 0.7.1
- Python version: 3.7
- Operating System: MacOS
Description
I need to search for Task those statuses are not in completed, cancelled, rejected.
What I Did
query = {
"status:not": "completed,cancelled,rejected",
"code:not": "|consentTask",
}
Didn’t get the expected result, but when do query positive term like "status": "ready,in-progress", it's working!
Description
I need to search for Task those statuses are not in completed, cancelled, rejected.
What I Did
Didn’t get the expected result, but when do query positive term like "status": "ready,in-progress", it's working!