Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/graphql / dist / models / Studio.graphql.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// @todo Michael implement this
const apollo_server_1 = require("apollo-server");
exports.default = apollo_server_1.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]
  }
`;
//# sourceMappingURL=Studio.graphql.js.map