# Policy A store policy with its type, title, content, and URL. ## Type Definition ```graphql type Policy { type: String! title: String! body: String! url: String! } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | type | String! | The type of the policy (e.g., terms_and_conditions, privacy_policy). | | title | String! | The localized title of the policy. | | body | String! | The HTML content of the policy. | | url | String! | The URL where the policy can be viewed. | ## Relationships The Policy type is used by the StorePolicies object to provide access to different store policies. Specific policy instances are accessed through the `termsAndConditions`, `privacyPolicy`, `shippingPolicy`, and `refundPolicy` fields on StorePolicies. ## Example ```graphql query { storePolicies { termsAndConditions { type title body url } } } ``` ## Implements This type does not implement any interfaces. ## Related Types - `StorePolicies`