Stream: implementers
Topic: searching with multiple identifier.system
Tushar Nair (Sep 08 2020 at 23:25):
I'm working on a client application where we need to find a patient based on an identifier.
The user can choose the identifier type (MRN, SSN, ...) , and then can provide a value. We intend to map (back-end configuration) what the user chose in the user interface to available identifier systems. But does fhir support searching with multiple identifier systems in a single query. Something like this: /Patient?identifier.value=123&identifier.system=goodhealth.it,overlakehealth.it. Can somebody please advise how to support this search in a valid and efficient way
Paul Church (Sep 08 2020 at 23:30):
You should be able to do Patient?identifier=goodhealth.it|123,overlakehealth.it|123
Tushar Nair (Sep 09 2020 at 00:01):
@Paul Church , it works. Thanks a ton :)
Last updated: Apr 12 2022 at 19:14 UTC