# Attachment Represents a file or link attached to a product. ## Type Definition ```graphql type Attachment { name: String href: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | name | String | The display name of the attachment | | href | String | The 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 ```graphql { product(id: 12345) { attachments { name href } } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [Product](/docs/types/product)