OBJECT
CarePlan
A Care Plan
link GraphQL Schema definition
- type CarePlan {
- # The name of a user group or a patient the care plan has been assigned to
- String :
- # Date of creation
- String :
- # Provider who created care plan
- User :
- # The care plan description
- String :
- # Associated documents
- Document!]! : [
- # Feature Toggle of the care plan
- FeatureToggle :
- # Associated goals
- Goal!]! : [
- # Shows whether a group care plan(or a single one, if patient_id argument is not
- # passed) is active for a given user. Make sure to pass patient_id argument if you
- # need to check the status of a group care_plan for the given user
- #
- # Arguments
- # patient_id: The ID of a patient to check
- (
- ID :
- ): Boolean
- # Shows whether the patient or at least one user from the related group has not
- # skipped email. We don't want to call care_plan_mailer if all of related users
- # have skipped_email == true
- Boolean :
- ID! :
- # Care plan is active for the associated patient
- Boolean :
- # Indicates whether a care plan is for a group
- Boolean :
- # Care plan status
- Boolean :
- # Indicates if care plan can be used as a template and can be assigned on other
- # users
- Boolean :
- # The name of care plan
- String :
- # A user the care plan has been assigned to
- User :
- # Ordered (Ascending) associated recommendations
- Recommendation!]! : [
- # Date when record was last updated
- String :
- # A user group the care plan has been assigned to
- UserGroup :
- }
link Require by
- bulkApplyCarePlanTemplatePayloadAutogenerated return type of bulkApplyCarePlanTemplate
- bulkUpdateCarePlanUsersPayloadAutogenerated return type of bulkUpdateCarePlanUsers
- createCarePlanPayloadAutogenerated return type of createCarePlan
- deleteCarePlanPayloadAutogenerated return type of deleteCarePlan
- FeatureToggleAn object containing details about what the client can and can't do
- QueryThe query root of this schema. See available queries.
- sendCarePlanEmailPayloadAutogenerated return type of sendCarePlanEmail
- toggleCarePlanStatusForSpecificUserPayloadAutogenerated return type of toggleCarePlanStatusForSpecificUser
- updateCarePlanPayloadAutogenerated return type of updateCarePlan
- updateGroupCarePlanPayloadAutogenerated return type of updateGroupCarePlan
- UserAn user entry, returns basic user information