OBJECT

Dish

A dish contains its name, when it was last eaten and records that contain it.

link GraphQL Schema definition

  • type Dish {
  • # The ID of the dish.
  • id: ID!
  • # The name of the dish.
  • name: String!
  • # When the dish was last eaten.
  • lastEaten: Date
  • # A list of records that contain the dish.
  • records: DishRecordConnection!
  • }