INPUT_OBJECT

SharePointFullRestoreConfig

Description

Represents the objects or items to be restored from a site collection. Either the SharePoint object or SharePoint items should be populated, but not both.

link GraphQL Schema definition

  • input SharePointFullRestoreConfig {
  • # The object (list, document library, web part, or site) to restore.
  • spObjectToRestore: SharePointObject
  • # The items to restore, if browsing within a document library, list, or web part.
  • spItemsToRestore: SharePointItems
  • # The Polaris ID of the target when restoring to a new location.
  • targetObjectUuid: UUID
  • # Type of the target.
  • targetObjectType: SnappableType
  • # Create a new object under the target if true.
  • shouldCreateNewObject: Boolean!
  • # Type of object to create under the target.
  • newObjectType: SnappableType
  • # The name for the new object.
  • newObjectName: String
  • }