GetListParams: {
    as_dict?: boolean;
    debug?: boolean;
    doctype: string;
    fields?: string[];
    filters?: FrappeFilters;
    group_by?: string;
    limit_page_length?: number;
    limit_start?: number;
    or_filters?: FrappeFilters;
    order_by?: string | number;
    parent?: string;
}

Parameters for fetching a list of documents.

The GetListParams type defines the parameters that can be used to customize the query for fetching a list of documents from the server. These parameters control aspects such as which fields to retrieve, filtering conditions, ordering, and pagination.