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 / ProductReview.graphql.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const apollo_server_1 = require("apollo-server");
exports.default = apollo_server_1.gql `
  type ChildrenInfo {
    count: String
  }
  type Reviews {
    identifier: String
    reviewcreated: String
    negativereviewcount: String
    rating: String
    reviewupdated: String
    label: String
    positivereviewcount: String
    userid: String
    ratingrange: String
    isfeatured: String
    reviewcount: String
    isratingsonly: String
    location: String
    value: String
    username: String
  }
  type ProductReviewRating {
    reviewcount: String
    reviews: [Reviews]
  }
  type PrdocutReviewState {
    errormessage: String
    offset: String
    limit: String
    locale: String
    status: String
  }
  type ReviewProperties {
    childreninfo: ChildrenInfo
    reviewrating: ProductReviewRating
    state: PrdocutReviewState
  }
  type ReviewResponse {
    type: String
    properties: ReviewProperties
  }

  type Ratings {
    label: String
    value: String
  }

  type RatingResponse {
    identifier: String
    recommendedcount: String
    ratings: [Ratings]
    rating: String
    count: String
    ratingrange: String
  }
`;
//# sourceMappingURL=ProductReview.graphql.js.map