interface SearchContent {
    cql?: string;
    cqlcontext?: string;
    excerpt?: string;
    expand?: string;
    includeArchivedSpaces?: boolean;
    limit?: number;
    start?: number;
}

Properties

cql?: string

The CQL query see advanced searching in confluence using CQL

cqlcontext?: string

The execution context for CQL functions, provides current space key and content id. If this is not provided some CQL functions will not be available.

excerpt?: string

The excerpt strategy to apply to the result, one of : indexed, highlight, none. This defaults to highlight.

expand?: string

The properties to expand on the search result, this may cause database requests for some properties

includeArchivedSpaces?: boolean

Whether to include content in archived spaces in the result, this defaults to false

limit?: number

The limit of the number of items to return, this may be restricted by fixed system limits

start?: number

The start point of the collection to return

Generated using TypeDoc v0.25.12