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

24 lines
930 B
Plaintext

import type { CollectionSlug } from '../../index.js';
import type { PayloadRequest, Where } from '../../types/index.js';
import type { FolderOrDocument } from '../types.js';
type QueryDocumentsAndFoldersResults = {
documents: FolderOrDocument[];
folderAssignedCollections: CollectionSlug[];
subfolders: FolderOrDocument[];
};
type QueryDocumentsAndFoldersArgs = {
/**
* Optional where clause to filter documents by
* @default undefined
*/
documentWhere?: Where;
/** Optional where clause to filter subfolders by
* @default undefined
*/
folderWhere?: Where;
parentFolderID: number | string;
req: PayloadRequest;
};
export declare function queryDocumentsAndFoldersFromJoin({ documentWhere, folderWhere, parentFolderID, req, }: QueryDocumentsAndFoldersArgs): Promise<QueryDocumentsAndFoldersResults>;
export {};
//# sourceMappingURL=getFoldersAndDocumentsFromJoin.d.ts.map