Files
klz-cables.com/.pnpm-store/v10/files/e5/e58f5e717197586bf02fe451cec549505775e39a7570c884095560e50f6252ccde5ec0921d70823cda6f3d0d3d320778f0854d401446c47a3257612fe31956
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
564 B
Plaintext

import type { GraphQLResolveInfo } from 'graphql';
import type { Collection, TypeWithID, TypeWithVersion } from 'payload';
import type { Context } from '../types.js';
export type Resolver<T extends TypeWithID = any> = (_: unknown, args: {
fallbackLocale?: string;
id: number | string;
locale?: string;
select?: boolean;
trash?: boolean;
}, context: Context, info: GraphQLResolveInfo) => Promise<TypeWithVersion<T>>;
export declare function findVersionByIDResolver(collection: Collection): Resolver;
//# sourceMappingURL=findVersionByID.d.ts.map