Search Content By Cql
Returns the list of content that matches a Confluence Query Language(CQL) query. For information on CQL, see:[Advanced searching using CQL](https://developer.atlassian.com/cloud/confluence/advanced-searching-using-cql/).Example initial call:```/wiki/rest/api/content/search?cql=type=page&limit=25```Example response:```{ "results": [ { ... }, { ... }, ... { ... } ], "limit": 25, "size": 25, ... ...