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

27 lines
1.0 KiB
Plaintext

import type { DBQueryConfig } from 'drizzle-orm';
import type { FlattenedField, JoinQuery, SelectType } from 'payload';
import type { BuildQueryJoinAliases, DrizzleAdapter } from '../types.js';
type BuildFindQueryArgs = {
adapter: DrizzleAdapter;
collectionSlug?: string;
depth: number;
draftsEnabled?: boolean;
fields: FlattenedField[];
joinQuery?: JoinQuery;
/**
* The joins array will be mutated by pushing any joins needed for the where queries of join field joins
*/
joins?: BuildQueryJoinAliases;
locale?: string;
select?: SelectType;
tableName: string;
versions?: boolean;
};
export type Result = {
with?: {
_locales?: DBQueryConfig<'many', true, any, any>;
} & DBQueryConfig<'many', true, any, any>;
} & DBQueryConfig<'many', true, any, any>;
export declare const buildFindManyArgs: ({ adapter, collectionSlug, depth, draftsEnabled, fields, joinQuery, joins, locale, select, tableName, versions, }: BuildFindQueryArgs) => Result;
export {};
//# sourceMappingURL=buildFindManyArgs.d.ts.map