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


---

# 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/restaurants/recommend-menu-items.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.
