OBJECT

GoalInstance

a goal instance. gives a snapshot of a goal over a specific interval(start_range and end_range )

link GraphQL Schema definition

  • type GoalInstance {
  • # The date the interval starts for this goal instance
  • end_range: String
  • # the relevant goal
  • goal: Goal
  • # If true, the goal was completed in between the start and end range
  • is_completed_for_interval: Boolean
  • # The date the interval starts for this goal instance
  • start_range: String
  • }