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
21 lines
742 B
Plaintext
21 lines
742 B
Plaintext
import type { PaginatedDistinctDocs } from '../../database/types.js';
|
|
import type { PayloadRequest, PopulateType, Sort, Where } from '../../types/index.js';
|
|
import type { Collection } from '../config/types.js';
|
|
export type Arguments = {
|
|
collection: Collection;
|
|
depth?: number;
|
|
disableErrors?: boolean;
|
|
field: string;
|
|
limit?: number;
|
|
locale?: string;
|
|
overrideAccess?: boolean;
|
|
page?: number;
|
|
populate?: PopulateType;
|
|
req?: PayloadRequest;
|
|
showHiddenFields?: boolean;
|
|
sort?: Sort;
|
|
trash?: boolean;
|
|
where?: Where;
|
|
};
|
|
export declare const findDistinctOperation: (incomingArgs: Arguments) => Promise<PaginatedDistinctDocs<Record<string, unknown>>>;
|
|
//# sourceMappingURL=findDistinct.d.ts.map |