Skip to Content

StorePolicies

Store policies including terms and conditions, privacy policy, shipping policy, and refund policy.

Type Definition

type StorePolicies { termsAndConditions: Policy privacyPolicy: Policy shippingPolicy: Policy refundPolicy: Policy }

Fields

FieldTypeDescription
termsAndConditionsPolicyTerms and conditions of the store.
privacyPolicyPolicyPrivacy policy of the store.
shippingPolicyPolicyShipping policy of the store.
refundPolicyPolicyRefund 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

query { policies { termsAndConditions { title body } privacyPolicy { title body } shippingPolicy { title body } refundPolicy { title body } } }

Implements

This type does not implement any interfaces.