INTERFACE
O365OnedriveObject
link GraphQL Schema definition
- interface O365OnedriveObject {
- # The ID of the O365 OneDrive object.
- String! :
- # The parent folder ID of the object (ROOT indicates root folder).
- String :
- # The name of the OneDrive object.
- String :
- # The size of the OneDrive object or its contents in bytes.
- Long :
- # The creation time of the OneDrive object.
- DateTime :
- # The modified time of the OneDrive object.
- DateTime :
- # The display name of the Teams channel.
- String :
- # The name of the folder corresponding to the Teams channel.
- String :
- # The membership type of the Teams channel.
- ChannelMembershipType :
- }
link Require by
- O365OnedriveFile
- O365OnedriveFolder
- O365OnedriveObjectConnectionPaginated list of O365OnedriveObject objects with additional pagination information. Use `nodes` if per-object cursors are not needed. Each page of the results will include at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- O365OnedriveObjectEdgeWrapper around the O365OnedriveObject object. This wrapper is used for pagination.