searchRelatedPersonByMSISDN top-level constant

String const searchRelatedPersonByMSISDN

Implementation

const String searchRelatedPersonByMSISDN = r'''
query FindPatient($search: String!) {
  findPatients(search:$search){
    edges{
      node{
        ID
        Active
        Name{
          Text
          Family
          Given
        }
        Telecom{
          Value
        }
        Gender
        BirthDate
      }
    }
  }
}
''';