Skip to content

GoalHistory

a goal history

Fields

completed_on · String! · required · The date the goal is marked completed
created_at · String! · required · The completion timestamp of the goal
cursor · Cursor! · required · Pagination cursor
description · String · The description of the goal
goal · Goal · goal that was completed
goal_id · ID · goal id of goal history
id · ID! · required · The unique identifier of the history
is_subgoal · Boolean · If true, the goal is a subgoal
name · String · The name of the goal
repeat · String · The repeat frequency of the goal
user · User · client of this goal
user_id · ID · user id of goal history

Used By

Definition

"""
a goal history
"""
type GoalHistory {
"""
The date the goal is marked completed
"""
completed_on: String!
"""
The completion timestamp of the goal
"""
created_at: String!
"""
Pagination cursor
"""
cursor: Cursor!
"""
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
}