OBJECT

GoalDataType

Goal data

link GraphQL Schema definition

  • type GoalDataType {
  • # All goals frequency count
  • all_goals_frequency_count: Int
  • # All goals status count
  • all_goals_status_count: Int
  • # All time goals count
  • all_time_goals_count: Int
  • # Completed goals count
  • completed_goals_count: Int
  • # Daily goals count
  • daily_goals_count: Int
  • # Goal list
  • goals: [Goal!]
  • # Goals count
  • goals_count: Int
  • # Goals overall completion rate info
  • goals_overall_completion_rate_info: GoalOverallCompletionRateInfo
  • # Goals streak count
  • goals_streak_count: Int
  • # Not completed goals count
  • not_completed_goals_count: Int
  • # One time goals count
  • one_time_goals_count: Int
  • # Weekly goals count
  • weekly_goals_count: Int
  • }