Premium Program Recipes

Obtain a list of Premium recipes if the user is on a Premium program

Use the premiumProgramRecipes query to obtain a list of recommended Premium recipes for the user's current program.

This query only works for users marked as "premium" when set on a "premium" program.

Example

{
  premiumProgramRecipes {
    edges {
      node {
        id
        name
        author
        rating
        language
        updatedAt
        isRestricted
        isUserFavorite
        nutritionalInfo {
          ala
          fat
        }
        recipeType
      }
    }
  }
}

Last updated