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

Object that returns the restaurant information.

Example

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

Last updated