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

28 lines
813 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createHandler = void 0;
const http_1 = require("./http");
/**
* Create a GraphQL over HTTP spec compliant request handler for
* the Node environment.
*
* ```js
* import http from 'http';
* import { createHandler } from 'graphql-http/lib/use/node';
* import { schema } from './my-graphql-schema';
*
* const server = http.createServer(createHandler({ schema }));
*
* server.listen(4000);
* console.log('Listening to port 4000');
* ```
*
* @category Server/node
*
* @deprecated Please use {@link use/http.createHandler | http} or {@link use/http2.createHandler | http2} adapters instead.
*/
function createHandler(options) {
return (0, http_1.createHandler)(options);
}
exports.createHandler = createHandler;