INPUT_OBJECT

UpdateAsset

Input needed to update an asset. The asset data itself -- file or URI -- is immutable. Only supplemental metadata can be updated with this input type.

link GraphQL Schema definition

1input UpdateAsset {
4
2# The asset ID. Required.
3id: ID!
7
5# The asset description.
6description: String
10
8# File name or other name for the asset
9name: String
13
11# Optionally, set attributes about the file
12fileData: SetAssetFileData
16
14# Optionally, set attributes about the source engine and task
15sourceData: SetAssetSourceData
19
17# Application- or type-specific metadata
18details: JSONData
20}