Arguments passed to the underlying view.

interface ExplainResultMrArgs {
    conflicts?: any;
    direction?: string;
    end_key?: any;
    include_docs?: boolean;
    partition?: string;
    reduce?: boolean;
    stable?: boolean;
    start_key?: any;
    update?: any;
    view_type?: string;
}

Properties

conflicts?: any

Schema for any JSON type.

direction?: string

Direction parameter passed to the underlying view.

end_key?: any

Schema for any JSON type.

include_docs?: boolean

A parameter that specifies whether to include the full content of the documents in the response in the underlying view.

partition?: string

Partition parameter passed to the underlying view.

reduce?: boolean

A parameter that specifies returning only documents that match any of the specified keys in the underlying view.

stable?: boolean

A parameter that specifies whether the view results should be returned form a "stable" set of shards passed to the underlying view.

start_key?: any

Schema for any JSON type.

update?: any

Schema for any JSON type.

view_type?: string

The type of the underlying view.

Generated using TypeDoc