# Frequently Logged

Use the `frequentMealLogs`query 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` | [MealType](https://docs.suggestic.com/graphql/objects/food-logs/meal-type) | Available options are `RECIPE`, `MENU_ITEM`, `OWN_RECIPE`, `USDA_MEAL`, and `OWN_ITEM` |

### Example

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

```graphql
{
  frequentMealLogs {
    id
    name
    mealType
  }
}
```

{% endtab %}

{% tab title="Response" %}

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

{% endtab %}
{% endtabs %}
