Menu Items

Obtain a list of menu items for a specific restaurant

Use the Menuitemsquery to retrieve all menu items associated with a restaurant.

Required Argument

Argument

Type

Description

restaurantId

Database ID

Restaurant unique ID.

Available Fields

The following fields will be displayed in the response:

Field Name

Type

Description

id

ID!

The menu item unique id

name

String

Menu item name

description

String

Menu item description

Refer to this documentationarrow-up-right to get the complete list of restaurant fields you can add to the query response

Example

{
  menuitems(restaurantId: "6d9a8ddd-0f66-42f3-9318-deb393113d65") {
    id
    name
    description
  }
}

Last updated

Was this helpful?