# Recommend Menu Items

Use the `recommendedMenuitems` query to get a list of recommended restaurant menus based on their location.

### Required Arguments

| Argument | Type     | Note                                      |
| -------- | -------- | ----------------------------------------- |
| `lat`    | Location | Latitude where the restaurant is located. |
| `lon`    | Location | Longitud where the restaurant is located. |

### Available Fields

The following fields are displayed in the response:

| Field Name   | Type                                                                       | Description                                     |
| ------------ | -------------------------------------------------------------------------- | ----------------------------------------------- |
| `id`         | ID                                                                         | Restaurant ID                                   |
| `name`       | String                                                                     | Menu name                                       |
| `restaurant` | [Restaurant](https://docs.suggestic.com/graphql/objects/common/restaurant) | Object that returns the restaurant information. |

### Example

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

```graphql
{
  recommendedMenuitems(lat: 30.3076863 lon: -97.8934825) {
    id
    name
    restaurant {
      id
      name
    }
  }
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "recommendedMenuitems": [
      {
        "id": "TWVudUl0ZW06M2I1ZTY3N2ItOWZjOC00YTBlLThiMTctMjZhYWYyMjUwMzY5",
        "name": "Chefs Seafood Ceviche",
        "restaurant": {
          "id": "UmVzdGF1cmFudDpOb25l",
          "name": "Fion Bee Caves",
          "address1": "11715 FM 2244",
          "priceRating": "4.0"
        }
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}
