Hi All,
Select (action) has many items in the collection, when I am trying to get a list of items it returns only the first item.
[
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id,displayName)",
"value": [
{
"id": "99b3391d",
"displayName": "GAAD"
},
{
"id": "0a12462f",
"displayName": "BAAD"
}
]
}
]

from the above screenshot, we can see it returned only one item from the collection.
Any help to get all the items instead of one row/item
here is the formula that is currently being used.
Item()['value']?[0]?['id']
Item()['value']?[0]?['displayName']
also tried like
Item()['value']?[0]['id']
Item()['value']?[0]['displayName']
also tried like
Item()['value']?[0]['id']
Item()['value']?[1]['displayName']

any assistance on how to get all the array items?