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!
- # The name of the dish.
- : String!
- # When the dish was last eaten.
- : Date
- # A list of records that contain the dish.
- : DishRecordConnection!
- }