OBJECT

GoalHistory

a goal history

link GraphQL Schema definition

  • type GoalHistory {
  • # The date the goal is marked completed
  • completed_on: String!
  • # The completion timestamp of the goal
  • created_at: String!
  • # The description of the goal
  • description: String
  • # goal that was completed
  • goal: Goal
  • # goal id of goal history
  • goal_id: ID
  • # The unique identifier of the history
  • id: ID!
  • # If true, the goal is a subgoal
  • is_subgoal: Boolean
  • # The name of the goal
  • name: String
  • # The repeat frequency of the goal
  • repeat: String
  • # client of this goal
  • user: User
  • # user id of goal history
  • user_id: ID
  • }