OBJECT

Record

A record contains a day and dishes that were eaten on that day.

link GraphQL Schema definition

  • type Record {
  • # The ID of the record.
  • id: ID!
  • # What day this record is for.
  • day: Date!
  • # A list of dishes for this record.
  • dishes: DishConnection!
  • }