Open ir4y opened 1 year ago
This code
client.resources("Patient").search(_id="12724066").get()
returns
OperationOutcome: { "resourceType": "OperationOutcome", "issue": [ { "severity": "error", "code": "invalid", "details": { "text": "_count: unsupported when _id is provided" } } ] }
for Cerner sandbox.
After #111 there's a workaround for this particular issue: client.reference("Patient", "12724066").to_resource()
client.reference("Patient", "12724066").to_resource()
But for conditional update it still might be an issue
This code
returns
for Cerner sandbox.