Creating a patient is not complicated, but it requires some preliminary work to make sure that everything is set up for encryption. In the following example, we make sure that we are logged in as a user previously created, and we import the previously generated private key.
The preferred way to search for patients is to use filters. Most filters will require you to set a healthcare party (hcp) to limit the search to patients this hcp can actually access and decrypt.
Filter patient
const foundPatients = await patientApi.filterByWithUser(loggedUser, new FilterChainPatient({
filter: new PatientByHcPartyNameContainsFuzzyFilter({
healthcarePartyId: loggedUser.healthcarePartyId,
searchString: "eiffel"
})
}))
console.log(foundPatients.rows.map(p => `${p.firstName} ${p.lastName}°${p.dateOfBirth}`).join('\n'))
It is not always very user-friendly to express filters by declaring an object tree. This is why we also provide an easy to use declarative api for filters.