Parsed Ingredient Lines

The parsedIngredientLinesfield returns a structured version of the recipe's ingredient lines.

When possible, we suggest using the ingredientLines field.

Arguments

List of Fields

Example

{
  recipe(id: "UmVjaXBlOjhjMTFlZTdlLTNkZjMtNDc5Yy1hOTQzLTE2YWY1MmE0NmZkZQ==") {
    id
    name
    parsedIngredientLines(preferredUnitSystem: METRIC) {
      ingredientLine
      ingredient
      quantity
      unit
      other
      comment
    }
  }
}

Last updated