OBJECT

CloneAssetIdMap

Object that represents the mapping of clone assets to its parent's assets.

link GraphQL Schema definition

1type CloneAssetIdMap {
2
3# The original asset ID (within the cloned asset container).
4oldAssetId: ID!
5
6# The new asset ID (within the clone asset container).
7newAssetId: ID!
8
9}