# StorePolicies Store policies including terms and conditions, privacy policy, shipping policy, and refund policy. ## Type Definition ```graphql type StorePolicies { termsAndConditions: Policy privacyPolicy: Policy shippingPolicy: Policy refundPolicy: Policy } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | termsAndConditions | Policy | Terms and conditions of the store. | | privacyPolicy | Policy | Privacy policy of the store. | | shippingPolicy | Policy | Shipping policy of the store. | | refundPolicy | Policy | Refund policy of the store. | ## Relationships StorePolicies represents the collection of store-level policies that customers need to know about. Each policy field contains a Policy object with details about that specific policy. This type is commonly queried to display policy information throughout the storefront. ## Example ```graphql query { policies { termsAndConditions { title body } privacyPolicy { title body } shippingPolicy { title body } refundPolicy { title body } } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [Policy](/reference/storefront/1.3.0/objects/policy)