List the items that have been followed by the signed in user.
This collection includes items that are in the user's drive as well as items they have access to from other drives.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
This method returns a collection of driveItem resources for items which the owner of the drive is following.
If no items were found, an empty collection is returned.
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var result = await graphClient.Drives["{drive-id}"].Following.GetAsync();
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->drives()->byDriveId('drive-id')->following()->get()->wait();
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(request_adapter)
result = await graph_client.drives.by_drive_id('drive-id').following.get()