I have a repeating group that is displaying data from an external API call. The API is the Spoonacular Food API and the call I am using is the Recipes by Ingredient. The API pulls a list of Recipes and additional pieces of data about those recipes. As an examples, one recipe would show:
Recipe ID = 123456
Recipe Name = Chicken Tacos
Recipe Image = URL
Recipe Ingredients: names = taco shells, meat, onions, peppers, seasonings
I have everything displayed properly, but now I am trying to do some filtering of the data in the Repeating group. Here is the setup of the Repeating Group
I already have 1 filter in place that is working, which is simply looking for keywords in the Title of the recipe
But now I am trying to setup a filter to search through the Ingredients of the Recipes. The names of the ingredients are one level down in the data hierarchy, though, so I can’t seem to find a way to filter them properly.
The Data Type hierarchy is for the names of ingredients in a recipe would be:
Recipes by Ingredient > Recipes by Ingredients Used Ingredients > Name
The repeating group has a Type of Recipes by Ingredient, so I can’t put in a simple filter. It would probably need to be an advanced filter, but I have tried every combination of setups and nothing is working.
Any thoughts?