INPUT_OBJECT

RequestClone

link GraphQL Schema definition

1input RequestClone {
5
2# Optional Source Organization Id or GUID. Defaults to the user's own
3# organization.
4sourceApplicationId: ID
8
6# Required Destination Organization Id or GUID.
7destinationApplicationId: ID!
11
9# Clone blob assets for each cloned TDO. Defaults to false
10cloneBlobs: Boolean
14
12# Whether to include assets in the clone. Defaults to true.
13includeAssets: Boolean
17
15# Whether to include jobs and tasks in the clone. Defaults to true.
16includeJobs: Boolean
21
18# Optional array of asset filters. If includeAssets is true and this is empty, all
19# assets will be cloned.
20cloneAssets: [CloneAssetFilterInput!]
22}