OBJECT

MedicationType

Medication belonging to client

link GraphQL Schema definition

  • type MedicationType {
  • # Indicates if medication is still active (medication can also be inactive if
  • # current date doesn't fall between start and end date)
  • active: Boolean
  • # CCDA code for this medication
  • code: String
  • # Comments entered by provider
  • comment: String
  • # created at date
  • created_at: String
  • # Directions to use medication entered by provider
  • directions: String
  • # Dosage of medication entered by provider
  • dosage: String
  • # last date patient should be able to use medication
  • end_date: String
  • # Frequency of this medication
  • frequency: String
  • id: ID!
  • # Name of medication
  • name: String
  • # The way this medication is administered
  • route: String
  • # First active date of medication
  • start_date: String
  • # updated at date
  • updated_at: String
  • }