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!]
27
22# When set, only these TDO (recording) IDs from the source application are cloned.
23# Stored on the clone job request payload and passed to recording lookup by ID.
24# Validated at request time: non-empty, at most 1000 IDs, each a UUID or integer
25# recording ID.
26tdoIds: [ID!]
28}