Interface ArchiveListQuery

Query filters for listing archive entries.

interface ArchiveListQuery {
    limit?: number;
    q?: string;
    tag?: string | string[];
}

Properties

Properties

limit?: number

Maximum number of entries to return.

q?: string

Free-text search query.

tag?: string | string[]

Filter by tag(s). Pass a string or array of strings.