Recipes By MealTime

Obtain recommended recipes by mealTime

Use the recipesByMealTime query to obtain a set of recommended recipes for different meals.

These recommendations change daily.

Available Arguments

None of the following arguments are required:

Available Fields

The following fields will be displayed in the response:

Refer to this documentation to get the complete list of recipe fields you can add to the query response.

Example

{
  recipesByMealTime(mealTime: BREAKFAST) {
    edges {
      node {
        name
        mealTags
      }
    }
  }
}

Example with tags

The following example filters the recipe by meal time and dietary tags

{
  recipesByMealTime(mealTime: BREAKFAST, dietaryTags: [GLUTEN_FREE]) {
    edges {
      node {
        name
        author
        ingredients {
          name
        }
        instructions
        ingredientLines
      }
    }
  }
}

Example with cuisines

{
recipesByMealTime(cuisines:["Mexican", "Asian"]){
edges { 
    node { 
        name 
        mealTags 
        cuisines 
        }
     }
   }
}

Last updated