findVitalsQuery top-level constant

String const findVitalsQuery

Implementation

const String findVitalsQuery = r'''
query SearchObservations($params: Map!) {
  searchFHIRObservation(params: $params) {
    edges {
      node {
        ID
      Status
      Code {
        Text
        Coding {
          Display
          Code
          System
          UserSelected
        }
      }
      ValueQuantity {
        Value
        Unit
        System
        Code
      }
      ReferenceRange {
        Text
        Low {
          Value
          Unit
          System
          Code
        }
        High {
          Value
          Unit
          System
          Code
        }
        Type {
          Text
          Coding {
            Code
            UserSelected
            System
            Display
          }
        }
      }
      Interpretation {
        Text
        Coding {
          Display
          Code
          System
          UserSelected
        }
      }
      Category {
        Text
        Coding {
          Code
          System
          Display
          UserSelected
        }
      }
      Issued
      EffectiveInstant
      Subject {
        Reference
        Type
        Display
      }
      Encounter {
        Reference
        Type
        Display
        }
      }
    }
	}
}
''';