Restaurant By Id

Retrieve a restaurant's information by its Id

Use the Restaurant query to retrieve a restaurant's information.

Required Argument

Argument Name

Type

Description

id

ID!

Restaurant unique ID

Available Fields

The following fields will be displayed in the response:

Field Name

Type

Description

id

ID!

The restaurant unique id

name

String

Restaurant name

description

String

Restaurant description

location

String

Restaurant current location

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

Example

{
  restaurant(id: "UmVzdGF1cmFudDo2ZDlhOGRkZC0wZjY2LTQyZjMtOTMxOC1kZWIzOTMxMTNkNjU=") {
    id
    name
    address1
    country
    stateProvince
    websiteUrl
    location
  }
}

Last updated

Was this helpful?