INPUT_OBJECT

SubgoalInput

link GraphQL Schema definition

  • input SubgoalInput {
  • # Id of the subgoal. If no id is given, a subgoal will be created
  • id: ID
  • # whether or not this subgoal should be deleted
  • _destroy: Boolean
  • user_id: String
  • name: String
  • description: String
  • # The frequency of this goal. Possible values are: 'Daily','Weekly', 'Once'
  • repeat: String
  • due_date: String
  • parent_id: String
  • # The id of the user who created it
  • created_user_id: String
  • # The id of subgoal template used to create this subgoal
  • source_template_id: String
  • # Subgoal title hyperlink. Opens when the subgoal name is clicked on.
  • title_link: String
  • }