Files
klz-cables.com/.pnpm-store/v10/files/8a/b67dcbb232c5f7d95cf4a45850b16f68e69eb082fa22636cce2a4cead89a17ee02ad370d9f4aa1dcfb69896f71ac652ee1536a7ea17d8dc2f1da0c9f739411
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

12 lines
507 B
Plaintext

import type { GraphQLResolveInfo } from 'graphql';
import type { Document, SanitizedGlobalConfig } from 'payload';
import type { Context } from '../types.js';
export type Resolver = (_: unknown, args: {
draft?: boolean;
fallbackLocale?: string;
id: number | string;
locale?: string;
select?: boolean;
}, context: Context, info: GraphQLResolveInfo) => Promise<Document>;
export declare function findOne(globalConfig: SanitizedGlobalConfig): Resolver;
//# sourceMappingURL=findOne.d.ts.map