Interface ArticleListParams

Parameters for listing articles

interface ArticleListParams {
    author?: string;
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    handle?: string;
    limit?: number;
    page?: number;
    published?: boolean;
    published_on_max?: string;
    published_on_min?: string;
    tag?: string;
    updated_on_max?: string;
    updated_on_min?: string;
}

Hierarchy (view full)

Properties

author?: string

Filter by author

created_on_max?: string

Filter by creation date range end

created_on_min?: string

Filter by creation date range start

fields?: string[]

Fields to include in response

handle?: string

Filter by handle

limit?: number

Number of items per page. Maximum value varies by endpoint.

page?: number

Page number (1-based).

published?: boolean

Filter by publication status

published_on_max?: string

Filter by publish date range end

published_on_min?: string

Filter by publish date range start

tag?: string

Filter by tags

updated_on_max?: string

Filter by update date range end

updated_on_min?: string

Filter by update date range start