Macros Aggregation

A list of aggregated macronutrient sums for the given date ranges

The mealLogMacroAggs query returns a list of aggregated macronutrients for the given date ranges, not grouped by date. I.e. the sum of carbs in grams consumed in the past 5 days.

The calculations made before logging a meal must be on the user's side.

Required Arguments

Argument

Type

Required

fromDate

Date!

true

toDate

Date!

true

Available Fields

Nutrient

Description

Unit

chocdf (carbs)

Carbs

g

fat

Fat

g

procnt (protein)

Protein

g

sugar

Sugar

g

netcarbs

Net Carbs

g

Example

{
  mealLogMacroAggs(fromDate: "2020-01-01" toDate: "2020-01-21") {
    sugar
    fat
    procnt
    chocdf
  }
}

Last updated