@corejam/base
Version:
A scaffolding for building progressive GraphQL powered jamstack applications
25 lines • 595 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.updateConfigSEOGQL = exports.updateConfigGQL = void 0;
exports.updateConfigGQL = `
mutation UpdateConfig($configInput: ConfigGeneralInput!) {
updateConfig(configInput: $configInput) {
general {
admin_email
}
}
}
`;
exports.updateConfigSEOGQL = `
mutation updateConfigSEO($seoInput: SEOInput!) {
updateConfigSEO(seoInput: $seoInput) {
seo {
metaTitle
metaDescription
url
keywords
}
}
}
`;
//# sourceMappingURL=Config.js.map