Episode
An episode of care for a patient.
type Episode {
id: ID!
patient: Patient
patientId: String
practice: Practice
practiceId: String
title: String!
type: EpisodeType!
startDate: Date!
status: EpisodeStatus!
labels: [EpisodeLabel!]
deleted: Boolean
createdBy: User
createdByUserId: String
createdAt: DateTime
updatedAt: DateTime
}
Fields
Episode.id ● ID! non-null scalar
Episode.patient ● Patient object
Episode.patientId ● String scalar
Episode.practice ● Practice object
Episode.practiceId ● String scalar
Episode.title ● String! non-null scalar
Episode.type ● EpisodeType! non-null enum
Episode.startDate ● Date! non-null scalar
Episode.status ● EpisodeStatus! non-null enum
Episode.labels ● [EpisodeLabel!] list object
Episode.deleted ● Boolean scalar
Episode.createdBy ● User object
Episode.createdByUserId ● String scalar
Episode.createdAt ● DateTime scalar
Episode.updatedAt ● DateTime scalar
Returned By
episode query ● episodes query
Member Of
EpisodeResponsePayload object