Express Meal Track Entries

The expressMealTracks query retrieves a list of express meal track entries for the authenticated user within a specified date range.

Arguments

start

DateTime!

Starting filter date range, format YYYY-mm-dd

end

DateTime!

Ending filter date range, format YYYY-mm-dd

first

Int

See more on pagination.

after

String

See more on pagination.

id

ID

ID of the express meal track entry.

mealTime

MealTime

enum MealTime { BREAKFAST LUNCH DINNER SNACK }

Available Fields

id

ID

Id of express meal track entry.

mealTime

MealTime

enum MealTime { BREAKFAST LUNCH DINNER SNACK }

calories

Float

Number of total calories of the meal entry.

proteins

Float

Total protein of the meal in grams.

carbs

Float

Total carbs of the meal in grams.

fats

Float

Total fats of the meal in grams.

datetime

DateTime

The date when the entry was logged. Use the format: YYYY-MM-DDT hh:mm:ssZ

Example

query {
  expressMealTracks(
    start: "2025-06-01",
    end: "2025-06-10"
  ) {
    edges {
      node {
        id
        mealTime
        calories
        proteins
        carbs
        fats
        datetime
      }
    }
  }
}

Last updated

Was this helpful?