Logo of FrontifyDeveloper PortalArrow to the right
GraphQL Reference
Interface

Attachment

AttachmentInterface for Attachment 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!

Attachment Id.

creator:User!

The User who created the Attachment on Frontify.

createdAt:DateTime!

DateTime of the Attachment creation.

modifier:User

The User who last modified the Attachment on Frontify.

modifiedAt:DateTime

DateTime of the Attachment's last modification.

filename:String

The Attachment's filename.

name:String

The Attachment's name or title.

extension:String

The Attachment's original file extension.

type:String

The Attachment's Media (MIME) type.

size:BigInt

The Attachment's size in bytes.

externalId:ID

The Attachment's External Id.