fetch list of possible ingredients if a more complex food for a given food name.
/**
* fetch list of possible ingredients if a more complex food for a given food name.
* @param foodName - query for foodName.
* @returns A `Promise` resolving to a `PassioFetchAdvisorInfoResult`.
*/
fetchPossibleIngredients(
foodName: string
): Promise<PassioFetchAdvisorInfoResult>
try {
// Fetch food results from the PassioSDK based on the query
const result = await PassioSDK.fetchPossibleIngredients("apple")
console.warn(result)
} catch (error) {
}