Interface DisqussionQuery

interface DisqussionQuery {
    filter_tags?: string[];
    limit: number;
    parent_author?: null | string;
    parent_permlink?: null | string;
    select_authors?: string[];
    select_tags?: string[];
    start_author?: null | string;
    start_permlink?: null | string;
    tag?: string;
    truncate_body?: number;
}

Properties

filter_tags?: string[]
limit: number

Number of results, max 100.

parent_author?: null | string
parent_permlink?: null | string
select_authors?: string[]
select_tags?: string[]
start_author?: null | string

Name of author to start from, used for paging. Should be used in conjunction with start_permlink.

start_permlink?: null | string

Permalink of post to start from, used for paging. Should be used in conjunction with start_author.

tag?: string

Name of author or tag to fetch.

truncate_body?: number

Number of bytes of post body to fetch, default 0 (all)