Say I have a collection of recipes that match this format:
{
title: "a recipe",
ingredients: [
{
description: "sugar",
amount: "1 cup"
},
{
description: "flour",
amount: "2 cups"
}
]
}
If given an array such as ["sugar", "butter"], what is the best way to return all recipes that have an ingredient whose description is in the given array?