Repository URL to install this package:
|
Version:
2.0.21 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const apollo_server_1 = require("apollo-server");
exports.default = apollo_server_1.gql `
type Sku {
identifier: ID!
image: String
type: String!
name: String
properties: SkuProperties
additional: [LabelValue]
specifications: [Specifications]
children: SkuChildren
}
type SkuProperties {
buyinfo: SkuBuyInfo
iteminfo: SkuItemInfo
state: SkuState
skuinfo: SkuInfo
}
type SkuBuyInfo implements IBuyInfo {
pricing: Pricing
inventorystatus: String
instock: String
preorder: String
preorderdate: String
deliverydate: String
availablequantity: String
availability: [Availability]
promomessages: [Label]
}
type SkuItemInfo {
flags: [LabelValue]
additionalimages: [LabelValue]
additionalinfo: [LabelValue]
specifications: [LabelValue]
}
type SkuState {
starttime: String
}
type SkuInfo {
color: ImageName
size1: Name
style: Name
}
type SkuChildren {
offers: [SkuOffers]
}
type SkuOffers {
name: String
properties: SkuOfferProperties
}
type SkuOfferProperties {
iteminfo: OfferItemInfo
}
type OfferItemInfo {
description: [LabelValue]
}
`;
//# sourceMappingURL=Sku.graphql.js.map