We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efef4d7 commit 3e8784eCopy full SHA for 3e8784e
src/publish/confluence/api/index.ts
@@ -94,7 +94,7 @@ export class ConfluenceClient {
94
const CQL_CONTEXT =
95
"%7B%22contentStatuses%22%3A%5B%22archived%22%2C%20%22current%22%2C%20%22draft%22%5D%7D"; //{"contentStatuses":["archived", "current", "draft"]}
96
97
- cql = `${cql}&spaces=${space.key}&cqlcontext=${CQL_CONTEXT}`;
+ cql = `${cql}%20and%20space=${space.key}&cqlcontext=${CQL_CONTEXT}`;
98
99
const result = await this.get<ContentArray>(`content/search?cql=${cql}`);
100
return result?.results ?? [];
0 commit comments