Files
klz-cables.com/.pnpm-store/v10/files/47/d6ff84fab7b88f11de2d8949972bc97c5c3d16e11689bacc5fc59fbf8076d879dcdfe554c0bb4ca4c2376173c990e408113678080896f8dbe2228ab59111cd
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

18 lines
375 B
Plaintext

import { GraphQLScalarType } from 'graphql';
export const GraphQLVoid = /*#__PURE__*/ new GraphQLScalarType({
name: 'Void',
description: 'Represents NULL values',
serialize() {
return '';
},
parseValue() {
return null;
},
parseLiteral() {
return null;
},
extensions: {
codegenScalarType: 'void',
},
});