This might be off topic, but related. I have a backend app making bulk data requests. Instead of downloading the entire data set at frequent intervals to update my local database, I would prefer to download the data once, and then perform incremental updates, presumably using the _since query param, although not clear to me how to do that, and if the FHIR server I am accessing supports that (ECW). If it does, is that a viable mechanism to get incremental data ? I tried it and I got an error as OperationOutcome in the response.
[base]/Patient?given={name} (or ?given:contains={partial-name} for substring, or ?given:exact={name} for an exact match) For last name, the same but using family instead of given
This might be off topic, but related. I have a backend app making bulk data requests. Instead of downloading the entire data set at frequent intervals to update my local database, I would prefer to download the data once, and then perform incremental updates, presumably using the _since query param, although not clear to me how to do that, and if the FHIR server I am accessing supports that (ECW).
If it does, is that a viable mechanism to get incremental data ? I tried it and I got an error as OperationOutcome in the response.
What about if we want to search a Patient by name or lastname ?
[base]/Patient?given={name} (or ?given:contains={partial-name} for substring, or ?given:exact={name} for an exact match)
For last name, the same but using family instead of given
I want to search in coding System by a specific code can you tell me??