I am wondering if it is possible to get all the editor names of the items in a drive.
I need to get a list of drive items with their editor names.
I can get all the items with their informations in one time.
(https://graph.microsoft.com/v1.0/sites/siteId/lists/documents/items/)
And in another time, i can retrieve the editor of all versions of a document.
(https://graph.microsoft.com/v1.0/sites/siteId/lists/documents/items/itemId/versions?expand=fields($select=Editor))
But i fear that if i have a large list of document, it will be too long to call the version endpoint foreach document.
Is there a way to get it quickly or not ?