OBJECT
A meal that a user has created
type Meal {# Pagination cursorcursor: Cursor! # The food items that are part of the mealfood_items: [FoodItem!] # The unique identifier of the mealid: ID! # The name of the mealname: String # The user that owns the mealuser_id: String }