OBJECT

FoodNutrient

A food nutrient item object

link GraphQL Schema definition

  • 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
  • }