How do I tell if a patient or any of it's related resources has changed since a given date? #2086
Unanswered
johnkwaters
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Yes, there is, provided the server supports it. The definition of the everything operation (http://hl7.org/fhir/patient-operation-everything.html) specifies the _since input parameter, which does exactly what you want. You will have to create a Parameters resource, add the parameter to it, and then use the FhirClient.InstanceOperation to execute the operation call. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Say I fetched a patient and it's observations, medications, etc... with the everything call.
I store the timestamp for that call.
Is there a way to query the FHIR server for any changes to the patient or it's child resources that has happened since that timestamp?
Beta Was this translation helpful? Give feedback.
All reactions