Skip to content

MealPlan

A meal plan

Fields

active · Boolean · If true, meal plan is active (most recent) on client's Living Plate account
date_added · String · Date meal plan was added to client's Living Plate account
id · ID! · required · The unique identifier of the plan
name · String · name of the meal plan on Living Plate
offering_name · String · If one exists, name of offering that was purchased that added meal plan to client's Living Plate account

Used By

Definition

"""
A meal plan
"""
type MealPlan {
"""
If true, meal plan is active (most recent) on client's Living Plate account
"""
active: Boolean
"""
Date meal plan was added to client's Living Plate account
"""
date_added: String
"""
The unique identifier of the plan
"""
id: ID!
"""
name of the meal plan on Living Plate
"""
name: String
"""
If one exists, name of offering that was purchased that added meal plan to client's Living Plate account
"""
offering_name: String
}