Policy
A store policy with its type, title, content, and URL.
Type Definition
type Policy {
type: String!
title: String!
body: String!
url: String!
}Fields
Relationships
The Policy type is used by the StorePolicies object to provide access to different store policies. Specific policy instances are accessed through the termsAndConditions, privacyPolicy, shippingPolicy, and refundPolicy fields on StorePolicies.
Example
query {
storePolicies {
termsAndConditions {
type
title
body
url
}
}
}Implements
This type does not implement any interfaces.
Related Types
StorePolicies