def getAllShopListIngredients(user):
    """ It gets all the ingredients in the shopping lists saved """

    ingredients = ShoppingList.getAllIngredientsInShopList(user)

    graphData = makeJson(ingredients)

    return graphData
def getAllShopListIngredients(user):

    """ It gets all the ingredients in the shopping lists saved """

    ingredients = ShoppingList.getAllIngredientsInShopList(user)

    graphData = makeJson(ingredients)

    return graphData