# 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 a collection of store-level policy documents. Each policy field is of type Policy, which contains the detailed policy information including title, body, and URL. This type is used to provide customers with access to important store policies during their shopping experience. ## Example ```graphql { termsAndConditions { title body url } privacyPolicy { title body url } shippingPolicy { title body url } refundPolicy { title body url } } ``` ## Implements None ## Related Types - [Policy](/reference/storefront/v1/objects/policy)