Own Food Items

Retrieve the list of own Food Items

Available Fields

The following fields are sent in the response:

Field Name

Type

Description

id

String

Own Food item ID

databaseId

DatabaseId

DatabaseId of the own food item

name

String

Name of the logged item

quantity

Float

Quantity of logged servings

nutritionalInfo

An object that contains the nutritional values of the associated food per each gram of that food.

{
  ownFoodItems {
    edges {
      node {
        id
        databaseId
        name
        quantity
        nutritionalInfo {
          calories
          fat
          protein
          carbs
        }
      }
    }
  }
}

Last updated