kambed / FoodzillaFrontendIos

Foodzilla - Frontend Ios of TUL project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FE iOS: Recipe details

RadekBucki opened this issue · comments

  • Use this GraphQl query:
{
  recipe(id: $id) {
      id
      name
      description
      timeOfPreparation
      numberOfSteps
      steps
      numberOfIngredients
      calories
      fat
      sugar
      sodium
      protein
      saturatedFat
      carbohydrates
      isFavourite
      reviews {
        id
        review
        rating
      }
      ingredients {
        id
        name
      }
      tags {
        id
        name
      }
  }
}