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
85 lines
3.8 KiB
Plaintext
85 lines
3.8 KiB
Plaintext
import type { CollectionSlug, DataFromCollectionSlug, Document, PaginatedDistinctDocs, Payload, PayloadRequest, PopulateType, RequestContext, Sort, TypedLocale, Where } from '../../../index.js';
|
|
export type Options<TSlug extends CollectionSlug, TField extends keyof DataFromCollectionSlug<TSlug>> = {
|
|
/**
|
|
* the Collection slug to operate against.
|
|
*/
|
|
collection: TSlug;
|
|
/**
|
|
* [Context](https://payloadcms.com/docs/hooks/context), which will then be passed to `context` and `req.context`,
|
|
* which can be read by hooks. Useful if you want to pass additional information to the hooks which
|
|
* shouldn't be necessarily part of the document, for example a `triggerBeforeChange` option which can be read by the BeforeChange hook
|
|
* to determine if it should run or not.
|
|
*/
|
|
context?: RequestContext;
|
|
/**
|
|
* [Control auto-population](https://payloadcms.com/docs/queries/depth) of nested relationship and upload fields.
|
|
*/
|
|
depth?: number;
|
|
/**
|
|
* When set to `true`, errors will not be thrown.
|
|
*/
|
|
disableErrors?: boolean;
|
|
/**
|
|
* The field to get distinct values for
|
|
*/
|
|
field: ({} & string) | TField;
|
|
/**
|
|
* The maximum distinct field values to be returned.
|
|
* By default the operation returns all the values.
|
|
*/
|
|
limit?: number;
|
|
/**
|
|
* Specify [locale](https://payloadcms.com/docs/configuration/localization) for any returned documents.
|
|
*/
|
|
locale?: 'all' | TypedLocale;
|
|
/**
|
|
* Skip access control.
|
|
* Set to `false` if you want to respect Access Control for the operation, for example when fetching data for the front-end.
|
|
* @default true
|
|
*/
|
|
overrideAccess?: boolean;
|
|
/**
|
|
* Get a specific page number (if limit is specified)
|
|
* @default 1
|
|
*/
|
|
page?: number;
|
|
/**
|
|
* Specify [populate](https://payloadcms.com/docs/queries/select#populate) to control which fields to include to the result from populated documents.
|
|
*/
|
|
populate?: PopulateType;
|
|
/**
|
|
* The `PayloadRequest` object. You can pass it to thread the current [transaction](https://payloadcms.com/docs/database/transactions), user and locale to the operation.
|
|
* Recommended to pass when using the Local API from hooks, as usually you want to execute the operation within the current transaction.
|
|
*/
|
|
req?: Partial<PayloadRequest>;
|
|
/**
|
|
* Opt-in to receiving hidden fields. By default, they are hidden from returned documents in accordance to your config.
|
|
* @default false
|
|
*/
|
|
showHiddenFields?: boolean;
|
|
/**
|
|
* Sort the documents, can be a string or an array of strings
|
|
* @example '-createdAt' // Sort DESC by createdAt
|
|
* @example ['group', '-createdAt'] // sort by 2 fields, ASC group and DESC createdAt
|
|
*/
|
|
sort?: Sort;
|
|
/**
|
|
* When set to `true`, the query will include both normal and trashed documents.
|
|
* To query only trashed documents, pass `trash: true` and combine with a `where` clause filtering by `deletedAt`.
|
|
* By default (`false`), the query will only include normal documents and exclude those with a `deletedAt` field.
|
|
*
|
|
* This argument has no effect unless `trash` is enabled on the collection.
|
|
* @default false
|
|
*/
|
|
trash?: boolean;
|
|
/**
|
|
* If you set `overrideAccess` to `false`, you can pass a user to use against the access control checks.
|
|
*/
|
|
user?: Document;
|
|
/**
|
|
* A filter [query](https://payloadcms.com/docs/queries/overview)
|
|
*/
|
|
where?: Where;
|
|
};
|
|
export declare function findDistinct<TSlug extends CollectionSlug, TField extends keyof DataFromCollectionSlug<TSlug> & string>(payload: Payload, options: Options<TSlug, TField>): Promise<PaginatedDistinctDocs<Record<TField, DataFromCollectionSlug<TSlug>[TField]>>>;
|
|
//# sourceMappingURL=findDistinct.d.ts.map |