@ubertheme/slider
Version:
UB Slider Module for Magento PWA Studio
28 lines (25 loc) • 647 B
JavaScript
import gql from 'graphql-tag';
//TODO: get only active slide items from graphql when it is ready
export const GET_SLIDE_ITEMS_LIST = gql`
query getSlideItems($slideKey: String!) {
slideItems(slideKey: $slideKey) {
slide_title
items {
id
title
desc
link
link_target
content_type
image
mobile_image
video_id
video_cover
additional_class
}
}
}
`;
export default {
getSlideItemsQuery: GET_SLIDE_ITEMS_LIST
};