OBJECT

CloneData

Metadata that represents a clone of a recording.

link GraphQL Schema definition

1type CloneData implements Metadata {
2
3# Timestamp when the recording was cloned
4date: String
5
6# The ID of the asset container this was cloned from
7originalId: String!
8
9# Clone blobs flag
10cloneBlobs: Boolean
11
12# Map of asset IDs from the clone to the parent.
13#
14# Arguments
15# oldAssetId: Provide an ID to retrieve mappings for specific old
16# asset.
17# newAssetId: Provide an ID to retrieve mappings for a specific
18# new asset.
19assetIdMap(oldAssetId: ID, newAssetId: ID): [CloneAssetIdMap]
20
21name: String!
22
23}

link Required by

This element is not required by anyone