OBJECT
Food
A food object
link GraphQL Schema definition
- type Food {
- # The name of the food creator
- String :
- # first serving size of the food object
- ServingSize :
- # The name of the food to display
- String :
- # The id of the food in the Edamam database
- String :
- # Whether the food was imported from the FDC database
- Boolean :
- # The unique identifier of the food
- ID! :
- # The name of the food
- String :
- # Nutrients of the food object
- FoodNutrient!] : [
- # Serving sizes of the food object
- ServingSize!] : [
- # The ID of the user who created the food
- String :
- }