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 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
{
termsAndConditions {
title
body
url
}
privacyPolicy {
title
body
url
}
shippingPolicy {
title
body
url
}
refundPolicy {
title
body
url
}
}Implements
None