For the complete documentation index, see llms.txt. This page is also available as Markdown.

DataSourceSyncRequest

Input object to request a manual sync of a data source.

input DataSourceSyncRequest {
  dataAccessFromTargetSync: Boolean!
  dataAccessToTargetSync: Boolean!
  dataObjectParent: String
  dataObjectSync: Boolean!
  dataSourceId: String!
  dataUsageSync: Boolean!
  excludeExisting: Boolean
  identitySync: Boolean!
}

Fields

dataAccessFromTargetSync ● Boolean! non-null scalar

Boolean to indicate if access from target needs to be synced or not.

dataAccessToTargetSync ● Boolean! non-null scalar

Boolean to indicate if access to target needs to be synced or not.

dataObjectParent ● String scalar

Optional: the ID of the data object to sync. That means that, if this is specified, the import will be run with DeleteUntouched=false, so no cleanup will be done of removed data objects.

dataObjectSync ● Boolean! non-null scalar

Boolean to indicate if the data objects needs to be synced or not.

dataSourceId ● String! non-null scalar

The ID of the data source to sync.

dataUsageSync ● Boolean! non-null scalar

Boolean to indicate if usage needs to be synced or not.

excludeExisting ● Boolean scalar

Optional: When DataObjectParent is provided, this boolean can indicate whether we need to ignore all the existing child data objects of the parent or not (also look for new descendants there).

identitySync ● Boolean! non-null scalar

Boolean to indicate if identities needs to be synced or not.

Member Of

triggerDataSourceCliSync mutation ● triggerDataSourceSync mutation

Last updated

Was this helpful?