I try to get all items from a SharePoint library, regardless of its status (checkin/out). Why does my code don't get the checked out items/documents
graphClient.Sites["SITEID"].Lists["LISTID"].Items.Request().Expand("createdByUser,fields,driveItem").GetAsync().Result;
Edit:
- Versioning is on
- If entry is first version and checked out, it will not be displayed
- If there are several versions, the versions before last is displayed (level = published)