Menu Item By Id

Obtain a menu item's details

Use the Menuitemquery to retrieve all details for a specific menu item.

Required Argument

Argument

Type

Description

id

ID!

Menu item ID. Use the Menuitemsquery to get the ID.

Available Fields

Field Name

Type

Description

id

ID

Menu item ID

name

string

Name of the menu item

description

string

Description of the menu item

sectionName

string

Section name where the item can be found

courses

string

Type of course. For example Main Dishes, Desserts, etc

restaurantName

string

Restaurant name where this menu item can be found

menu

string

Type of menu where the item can be found. For example, Wine Menu, Dinner Menu, etc

adherence

Object contains details about an item's Adherence Score.

restaurant

Object that contains the restaurant information

ingredients

Object that contains the ingredients information

nutritionalInfo

Object that contains the nutritional values of the associated food per each gram of that food

Example

{
  menuitem(id: "TWVudUl0ZW06ODhmN2NlYzQtNTRlNS00OTBjLTk2YzEtODc3YWIxOTU2OTky") {
    id
    name
		description
    minPrice
    maxPrice
    sectionName
    courses
    restaurantName
    menu
    ingredients {
      name
    }
    adherence {
      score
      color
      icon
      title
      reason
      isRecommended
    }
  }
}

Last updated