My Common Foods Search

Use the myCommonFoodsto return the user's stored common foods. These common foods are the ones created by a user by using the createMyCommonFoods mutation.

Use also an optional ID argument to search b64id foods.

Available Argument

Name

Type

Description

Id

String

Unique Food ID. No required argument.

Available Fields

The following fields are part of the response.

Field Name

Type

Description

name

String

Name of the common food

description

String

Branded food description

portions

Represents the predefined portions per food.

nutrients

Object that includes the information of the nutrients available in the food

Pagination

The myCommonFoods query supports the use of pagination. The following fields can be used

 pageInfo{
      hasNextPage
      hasPreviousPage
      startCursor
      endCursor
    }

Examples

GraphQL Example

{
  myCommonFoods {
    edges {
      node {
        id
        name
        nutrients{
          name
          type
          unit
          amount
        }
      }
    }
  }
}

Last updated