For the complete documentation index, see llms.txt. This page is also available as Markdown.

Frequently Logged

A list of the most frequently logged items

Use the frequentMealLogsquery to obtain a list of the most frequently logged items.

Available Fields

Field Name

Type

Description

id

String

Meal ID

name

String

Name of the meal

mealtype

Available options are RECIPE, MENU_ITEM, OWN_RECIPE, USDA_MEAL, and OWN_ITEM

Example

{
  frequentMealLogs {
    id
    name
    mealType
  }
}
{
  "data": {
    "frequentMealLogs": [
      {
        "id": "TWVhbExvZzpjMWUxYzFkMGVhOTgxMWVhYTRkMmQ2N2U0NzdiZTE4Yw==",
        "name": "Potato and pesto salad",
        "mealType": "RECIPE"
      }
    ]
  }
}

Last updated

Was this helpful?