Repository URL to install this package:
|
Version:
2.0.12 ▾
|
// @todo Michael implement this
import { gql } from 'apollo-server'
export default gql`
type Studio {
identifier: ID!
}
type HomePageTitleText {
title: String
subtitle: String
text: String
}
type HomePageBackground {
mainBG: String
bottomBG: String
}
type HomePageVideo {
index: Int
thumbnailImage: String
autoplay: Boolean
loop: Boolean
controls: Boolean
logo: String
title: String
slogan: String
shareTitle: String
videoLength: Float
}
type HomePage {
titleText: HomePageTitleText
background: HomePageBackground
videos: [HomePageVideo]
}
`