FoodNutrient
A food nutrient item object
Fields
nutrient_unit
· String
· The unit of the nutrient nutrient_value
· Float
· The value of the nutrient Used By
Definition
"""A food nutrient item object"""type FoodNutrient { """ The category of the nutrient """ category: String
""" Whether the nutrient is imported from the FDC database """ fdc_import: Boolean!
""" The unique identifier of the food """ food_id: String
""" The unique identifier of the nutrient """ id: ID!
""" The name of the nutrient """ name: String
""" The unit of the nutrient """ nutrient_unit: String
""" The value of the nutrient """ nutrient_value: Float}