Files
klz-cables.com/.pnpm-store/v10/files/a9/80946ec16081028503cdc5c21f4b9c7ac511c8c946a854e0a17ff053ac6a9e850faf08fba647dda2ba8d89d073487a94a59f4f335f26f4b63bc9da2613cfd6
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
599 B
Plaintext

import type { GraphQLResolveInfo } from 'graphql';
import type { Collection, CollectionSlug, DataFromCollectionSlug } from 'payload';
import type { Context } from '../types.js';
export type Resolver<TData> = (_: unknown, args: {
draft: boolean;
fallbackLocale?: string;
id: string;
locale?: string;
select?: boolean;
trash?: boolean;
}, context: Context, info: GraphQLResolveInfo) => Promise<TData>;
export declare function findByIDResolver<TSlug extends CollectionSlug>(collection: Collection): Resolver<DataFromCollectionSlug<TSlug>>;
//# sourceMappingURL=findByID.d.ts.map