VR
export const MediaGallery = gql`
fragment mediaGallery on MediaGalleryInterface {
disabled
label
position
url
}
`;
export const queryProductDetails = gql`
query ProductDetails($urlKey: String) {
products(filter: { url_key: { eq: $urlKey } }) {
items {
media_gallery {
...mediaGallery
}
}
}
}
${MediaGallery}
`;