Personal Details
PersonalDetails
is the representation of an Account
's or MedicalPatient
's Personal Information w/c are protected separately by the system to ensure privacy of associated data (primarily of MedicalRecord
s)
Searching For Personal Details
type SearchConfiguration {
text: string // the search string to be used
}
For easier search of Personal Details, a convinience operator $search
is implemented. it accepts a SearchConfiguration
object that will be used to match the following fields:
name.firstName
(fuzzy match, case insensitive)name.lastName
(fuzzy match, case insensitive)name.firstName and name.lastName
(when searchstring has the characted,
will be used to search combination of both fields with last name first)