dsteem
    Preparing search index...

    Interface DisqussionQuery

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

    Properties

    filter_tags?: string[]
    limit: number

    Number of results, max 100.

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

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

    start_permlink?: 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)