# 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](https://docs.suggestic.com/graphql/start-here/tutorials-and-walkthroughs/pagination#forward-pagination-arguments). |
| `after`    | String    | See more on [pagination](https://docs.suggestic.com/graphql/start-here/tutorials-and-walkthroughs/pagination#forward-pagination-arguments). |
| `id`       | ID        | ID of the express meal track entry.                                                                                                         |
| `mealTime` | MealTime  | <p>enum MealTime {<br>BREAKFAST<br>LUNCH<br>DINNER<br>SNACK<br>}</p>                                                                        |

## Available Fields

|            |          |                                                                             |
| ---------- | -------- | --------------------------------------------------------------------------- |
| `id`       | ID       | Id of express meal track entry.                                             |
| `mealTime` | MealTime | <p>enum MealTime {<br>BREAKFAST<br>LUNCH<br>DINNER<br>SNACK<br>}</p>        |
| `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

{% tabs %}
{% tab title="Request" %}

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

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "expressMealTracks": {
      "edges": [
        {
          "node": {
            "id": "RXhwcmVzc01lYWxUcmFjazo3ODM3",
            "mealTime": "SNACK",
            "calories": 630,
            "proteins": 50,
            "carbs": 66,
            "fats": 23,
            "datetime": "2025-06-09T16:07:21Z"
          }
        }
      ]
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.suggestic.com/graphql/query/queries/food-log/express-meal-track-entries.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
