INPUT_OBJECT

createGoalInput

Autogenerated input type of createGoal

link GraphQL Schema definition

  • input createGoalInput {
  • # The id of associated care plan
  • care_plan_id: ID
  • description: String
  • # The date the goal should end - format should be: yyyy-mm-dd
  • due_date: String
  • name: String
  • parent_id: String
  • # If true, create goal for program
  • program_goal: Boolean
  • reminder: ReminderInput
  • # The frequency of this goal. Possible values are: 'Daily','Weekly', 'Once'
  • repeat: String
  • # The id of goal template used to create this goal
  • source_template_id: String
  • # The date the goal should start - format should be: yyyy-mm-dd
  • start_on: String
  • subgoals: [SubgoalInput]
  • # Title hyperlink. Opens when the name is clicked on.
  • title_link: String
  • # If true, use this goal as a template(favorite)
  • use_as_template: Boolean
  • user_id: String
  • }