OBJECT

O365SnapshotItemInfo

Description

Browse or search delta response returns Microsoft Office 365 file or folder data.

link GraphQL Schema definition

  • type O365SnapshotItemInfo {
  • # The ID of the Microsoft Office 365 OneDrive object.
  • id: String!
  • # The parent folder ID of the object (ROOT indicates root folder).
  • parentFolderId: String
  • # The ID of the snapshot.
  • snapshotId: String
  • # The sequence number of the snapshot.
  • snapshotNum: Int
  • # Returns a list of folder IDs that contains the absolute path of the given item,
  • # starting with root and ending with the item. The first element in the list is
  • # the root, and the last is the item itself.
  • folderIdsTillRoot: [String!]!
  • # Returns fields related to different Microsoft Office 365
  • # SharePointDrive/OneDrive types.
  • o365ReplyFields: O365ReplyFields!
  • }