Hi
Trying to understand why patient search is not returning a patient response when we search on other given name in the int PDS data.
Expected result is
"familyName": "DOUBLE",
"givenName": "SPIKE GUY",
"gender": "male",
"birthDate": "1933-09-10",
"postcode": "KT10 0NW"
My expectation reading the docs is the given names offered in the search will be used to search all names in the PDS data however, I only get a match when I search either full name SPIKE GUY or SPIKE, which is effectively the same since we only search of the 3 first characters of the give name field.
Returns a match:
"givenName": "SPIKE GUY"
_exact-match=false&family=DOUBLE&given=SPI*&given=SPI*&given=GUY*&birthdate=eq1933-09-10&address-postcode=KT%2
"givenName": "SPIKE"
_exact-match=false&family=DOUBLE&given=SPI*&&birthdate=eq1933-09-10&address-postcode=KT%2A
No match from:
"givenName": "GUY"
_exact-match=false&family=DOUBLE&given=GUY*&given=GUY*&birthdate=eq1933-09-10&address-postcode=KT%2A
Just trying to understand if this is the expectation or if the way we are building are search terms is incorrect?
Thanks