interface SearchContentByCQL {
    cql: string;
    cqlcontext?: string;
    cursor?: string;
    expand?: string[];
    limit?: number;
}

Properties

cql: string

The CQL string that is used to find the requested content.

cqlcontext?: string

The space, content, and content status to execute the search against. Specify this as an object with the following properties:

  • spaceKey Key of the space to search against. Optional.
  • contentId ID of the content to search against. Optional. Must be in the space spacified by spaceKey.
  • contentStatuses Content statuses to search against. Optional.
cursor?: string

Pointer to a set of search results, returned as part of the next or prev URL from the previous search call.

expand?: string[]

A multi-value parameter indicating which properties of the content to expand.

limit?: number

The maximum number of content objects to return per page. Note, this may be restricted by fixed system limits.

Generated using TypeDoc v0.25.12