Meal
A meal that a user has created
Fields
food_items
· [FoodItem!]
· The food items that are part of the meal Used By
Definition
"""A meal that a user has created"""type Meal { """ Pagination cursor """ cursor: Cursor!
""" 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}