INTERFACE

O365FullSpObject

Description

SharePoint descendant objects.

link GraphQL Schema definition

  • interface O365FullSpObject {
  • # The SharePoint natural ID of the SharePoint descendant object.
  • sharepointId: String!
  • # The fid of the SharePoint descendant object.
  • fid: String!
  • # The parent ID of the SharePoint descendant object.
  • parentId: String
  • # The object type.
  • objectType: SharePointDescendantType!
  • # The name of the SharePoint descendant object.
  • name: String
  • # The time when this SharePoint descendant object was created.
  • createTime: DateTime
  • # The time when this SharePoint descendant object was modified.
  • modifiedTime: DateTime
  • # The ID of the snapshot.
  • snapshotId: UUID
  • # The sequence number of the snapshot.
  • snapshotNum: Int
  • }