INTERFACE

O365OnedriveObject

link GraphQL Schema definition

  • interface O365OnedriveObject {
  • # The ID of the O365 OneDrive object.
  • id: String!
  • # The parent folder ID of the object (ROOT indicates root folder).
  • parentFolderId: String
  • # The name of the OneDrive object.
  • name: String
  • # The size of the OneDrive object or its contents in bytes.
  • size: Long
  • # The creation time of the OneDrive object.
  • createTime: DateTime
  • # The modified time of the OneDrive object.
  • modifiedTime: DateTime
  • # The display name of the Teams channel.
  • channelName: String
  • # The name of the folder corresponding to the Teams channel.
  • channelFolderName: String
  • # The membership type of the Teams channel.
  • channelMembershipType: ChannelMembershipType
  • }