I need to retrieve the webpart title on a page via graph.
I can use this uri below
Which lists all webparts on the page
GET /sites/{site-id}/pages/{page-id}/microsoft.graph.sitePage/webParts/{webpart-id}
https://graph.microsoft.com/v1.0/sites/46f7d5ae-0c5e-4711-9910-8898e141c29b/pages/2e339472-1401-46b8-9765-0d2425e2f7e3/microsoft.graph.sitePage/webParts?$select=*
My output
"@odata.type": "#microsoft.graph.standardWebPart",
"id": "5f55379d-04cd-4277-99f9-33b52040944f",
"webPartType": "cbe7b0a9-3504-44dd-a3a3-0e5cacd07788",
"data": {
"dataVersion": "1.6",
"description": "Show a banner with title and author information",
"title": "Banner",
How do i navigate to get the title Banner? Thanks

