Files
klz-cables.com/.pnpm-store/v10/files/16/122a4e9cf0362195167e1a402a2e221669522c9b6e465b7ca2193f62670d6c0c59c15709ebe2c32f1bfe5792fe162185438e9c4a61043976ff84c7010eaab8
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

13 lines
378 B
Plaintext

import { initOperation, isolateObjectProperty } from 'payload';
export function init(collection) {
async function resolver(_, args, context) {
const options = {
collection,
req: isolateObjectProperty(context.req, 'transactionID')
};
return initOperation(options);
}
return resolver;
}
//# sourceMappingURL=init.js.map