# 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 %}
