interface QueryOptions {
    content_type?: string;
    include?: number;
    limit?: number;
    links_to_entry?: string;
    order?: string;
    select?: string;
    skip?: number;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

  • [key: string]: any

Properties

content_type?: string
include?: number
limit?: number
links_to_entry?: string
order?: string
select?: string
skip?: number