interface PromptListParams {
    bookmark?: string;
    counts?: string[];
    drilldown?: Record<string, any>;
    headers?: OutgoingHttpHeaders;
    include?: string;
    limit?: number;
    projectId?: string;
    signal?: AbortSignal;
    sort?: string;
    spaceId?: string;
}

Hierarchy (view full)

Properties

bookmark?: string

Bookmark of the query result

counts?: string[]

Returns the number of query results for each unique value of each named field.

drilldown?: Record<string, any>

Restrict results to documents with a dimension equal to the specified label. Note that, multiple values for a single key in a drilldown means an OR relation between them and there is an AND relation between multiple keys.

headers?: OutgoingHttpHeaders
include?: string

Entity

limit?: number

The limit request body field can be specified to limit the number of assets in the search results. The default limit is 200. The maximum limit value is 200, and any greater value is ignored.

projectId?: string

[REQUIRED] Specifies the project ID as the target. One target must be supplied per request.

signal?: AbortSignal
sort?: string

Sort order for the query

spaceId?: string

[REQUIRED] Specifies the space ID as the target. One target must be supplied per request.