Logo of FrontifyDeveloper PortalArrow to the right
GraphQL Reference
Interface

Asset

AssetInterface for Asset returnable types.

Implemented by

An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.Following types all implement this interface and must have all fields of this interface present.The __typename field resolves to a String which lets you differentiate different data types from each other on the client.

Type Fields
id:ID!

Asset id.

creator:User!

The creator is the User who created the asset on Frontify.

createdAt:DateTime!

DateTime of the Asset creation.

modifier:User

The modifier is the User who last modified the asset on Frontify.

modifiedAt:DateTime

DateTime of the Asset's last modification.

title:String!

Title of the Asset.

description:String

Description of the Asset.

attachments:[AssetAttachment]

List of Asset's Attachments.

externalId:ID

External Id of the Asset.

tags:[Tag]

List of Asset's tags.

copyright:Copyright

Asset copyright details.

availability:DateTimeRange!
Beta

BETA Asset will be available only during the defined DateTime range.When null it represents an unspecified start and/or open-ended date.

expiresAt:DateTime

Asset available until date.

licenses:[License]

List of Asset's licenses.

metadataValues:[MetadataValue]
Deprecated, Removal: 2025-01-01

Metadata values details. This field will be removed. Use customMetadata instead.

Represents the conversion status of the Asset. Example: FINISHED.

relatedAssets(
limit: Int = 25
page: Int = 1

Paginated list of Asset items related to Asset.

comments(
limit: Int = 25
page: Int = 1

Paginated list of AssetComment items for Asset.

currentUserPermissions:AssetUserPermissions!

Asset permissions of the current User.

customMetadata:[CustomMetadata!]!

List of CustomMetadataProperty items and values associated to Asset.

workflowTask:WorkflowTask
Beta

BETA The WorkflowTask this Asset is linked to.

location:AssetLocation!

Location of the Asset.

previewBackgroundColor:RgbaColor
Beta

BETA Background color of the Asset preview.