I have been able to use the Graph API to query the list of items in a Sharepoint Item
https://graph.microsoft.com/v1.0/sites/root/lists/d7689e2b-941a-4cd3-bb24-55cddee54294/items
However I would like to retrieve a specific property (LinkingUri) of a particular Item.
If I append the filter clause
https://graph.microsoft.com/v1.0/sites/root/lists/d7689e2b-941a-4cd3-bb24-55cddee54294/items?$select=id,LinkingUri
it gives me the error Could not find a property named 'LinkingUri' on type 'microsoft.graph.listItem' even though this is a Sharepoint list item
I am aware that the same can be done in Sharepoint REST API using the below https://abc.sharepoint.com/_api/web/getfilebyserverrelativeurl('/Shared%20Documents/Somedoc.docx')/LinkingUri
However I would like to achieve the same using Graph API

