Files
klz-cables.com/.pnpm-store/v10/files/13/c5e83fa67808ac1ccd48501c7dc52af5b0d5f81cb83e125461b79a1d4ce94cb28b7e593b6153b0cb77d3054163b38eefc468b0f122728328e42b0a3074df16
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

21 lines
924 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GraphQLJSON = exports.GraphQLJSONConfig = void 0;
// This named export is intended for users of CommonJS. Users of ES modules
const graphql_1 = require("graphql");
const utils_js_1 = require("./utils.js");
const specifiedByURL = 'http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf';
exports.GraphQLJSONConfig = {
name: 'JSON',
description: 'The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).',
serialize: utils_js_1.identity,
parseValue: utils_js_1.identity,
parseLiteral: utils_js_1.parseLiteral,
specifiedByURL,
specifiedByUrl: specifiedByURL,
extensions: {
codegenScalarType: 'any',
},
};
exports.GraphQLJSON = new graphql_1.GraphQLScalarType(exports.GraphQLJSONConfig);