I'm pretty new to Logic Apps and JSON, so there's a knowledge gap here I'm struggling to overcome.
In my Logic App, I am making an HTTP request to Graph and receiving back data in the following format (odata.count is variable):
{
"@odata.context": "https://graph.microsoft.com/v1.0/[...]",
"@odata.count": 2,
"value": [
{
"property1": "a",
"property2": "b",
"property3": "c"
},
{
"property1": "f",
"property2": "g",
"property3": "h"
}
]
}
How do I get from this to being able to do actions like "for each item where property1 is x, do an action with the value of property2"? I imagine it's some combination of "Parse JSON" and other Data Operations, but I'm having issues figuring out what I need to do. Thanks in advance for your help!