For the complete documentation index, see llms.txt. This page is also available as Markdown.

Own Recipes

Retrieve the list of own recipes

Available Fields

The following fields are displayed in the response:

Field

Type

Description

id

ID

Id of the own recipe

name

String

Name of the recipe

quantity

Int

Quantity of the recipe

ingredients

A structured version of a recipe ingredients

nutritionalInfo

A structured version of the nutritional information

{
  ownRecipes {
    edges {
      node {
        id
        databaseId
        name
        quantity
        nutritionalInfo {
          calories
          fat
          protein
          carbs
        }
        ingredients {
          id
          quantity
          serving
        }
      }
    }
  }
}

Last updated

Was this helpful?