Skip to Content

Attachment

Represents a file or link attached to a product.

Type Definition

type Attachment { name: String href: String }

Fields

FieldTypeDescription
nameStringThe display name of the attachment
hrefStringThe URL or path to the attachment

Relationships

The Attachment type is used to provide additional files and resources associated with products. It allows products to include downloadable files, documentation links, or other reference materials that enhance the product information.

Example

{ product(id: 12345) { attachments { name href } } }

Implements

This type does not implement any interfaces.