# CustomField Represents a product's custom field, including its value, type, and handle. ## Type Definition ```graphql type CustomField { title: String handle: String value: String type: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | title | String | The display title of the custom field. | | handle | String | The unique handle for the custom field. | | value | String | The value assigned to the custom field. | | type | String | The type of the custom field (e.g., text, number). | ## Relationships CustomField represents metadata associated with products. It contains structured information about custom attributes that can be assigned to products, including the field's display name, unique identifier, assigned value, and data type classification. ## Example ```graphql query { customField { title handle value type } } ``` ## Implements This type does not implement any interfaces. ## Related Types No related types specified.