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 Category {
_identifier: ID!
identifier: String
image: String
video: String
name: String
type: String
description: String
# children
categories: [Category]
categoryids: [LabelValue]
sortingoptions: [LabelValue]
}
# CategoryListOfLists
type CategoryList {
# children: CategoryChildren
categories: [Category]
type: String
}
# CategoryLandingPage
# type CategoryLandingPage {
# categoryBlocks: [CategoryBlock]
# }
type CategoryBlock {
name: String!
backgroundImage: String
heroImage: String
previewImage: String
}
type BrandLandingPage {
banner: String
backgroundImageUrl: String
learnMore: String
sliderLeft: String
sliderRight: String
sliderLeftMobile: String
sliderRightMobile: String
promoBanner1: String
promoBanner2: String
# presumably these are site-specific
hempTankJade: String
hempTankStone: String
hempTankMidnight: String
}
`;
//# sourceMappingURL=Category.graphql.js.map