OBJECT

Meal

A meal that a user has created

link GraphQL Schema definition

  • type Meal {
  • # The food items that are part of the meal
  • food_items: [FoodItem!]
  • # The unique identifier of the meal
  • id: ID!
  • # The name of the meal
  • name: String
  • # The user that owns the meal
  • user_id: String
  • }