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
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.