Intake Checklist

The intakesChecklist query helps you review your food intake to see if you're doing well or if you need to improve something in your daily intake.

Required Arguments

Available Fields

Example

query($category: IntakeCategory!, $start: Date!, $end: Date!) {
  intakesChecklist(start: $start, end: $end, category: $category) {
    name
    icon
    days {
      date
      items {
        ... on ChecklistItem {
          id
          title
          image
          checked
          subtitle
          category
        }
        ... on SupplementOnPlan {
          planName
          checked
          timeOfDay
          order
        }
    
      }
    }
  }
}
{
  "start": "2012-01-01",
  "end": "2022-12-01",
  "category": "SUPPLEMENT"
}

Last updated