Skip to content

Meal

A meal that a user has created

Fields

cursor · Cursor! · required · Pagination cursor
food_items · [FoodItem!] · The food items that are part of the meal
id · ID! · required · The unique identifier of the meal
name · String · The name of the meal
user_id · String · The user that owns 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
}