Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

countPages(cqlQuery)

Description

...

Parameter name

Type

Required

Description

cqlQuery

stringYesConfluence Query Language (CQL) search string.
Info

Read To learn more about CQL Functions in the , see Confluence CQL documentation.

Return type

number

Returns the number of pages that matched the CQL search query.

Example

Code Block
string cql = "(type=page and Space=DEV) OR (creator=bobsmith and type=blogpost)";

number count = countPages(CQL);
print("Return " + count);

...