OBJECT
CloneData
Metadata that represents a clone of a recording.
link GraphQL Schema definition
1 type CloneData implements Metadata { 2 3 # Timestamp when the recording was cloned 4 String : 5 6 # The ID of the asset container this was cloned from 7 String! : 8 9 # Clone blobs flag 10 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. 19 ID, : ID): [CloneAssetIdMap] ( : 20 21 String! : 22 23 }
link Required by
This element is not required by anyone