confluence-cli 1.27.5 → 1.27.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -197,16 +197,17 @@ confluence find "API Reference" --space MYSPACE
|
|
|
197
197
|
Search pages using a keyword or CQL expression.
|
|
198
198
|
|
|
199
199
|
```sh
|
|
200
|
-
confluence search <query> [--limit <number>]
|
|
200
|
+
confluence search <query> [--limit <number>] [--cql]
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
| Option | Default | Description |
|
|
204
204
|
|---|---|---|
|
|
205
205
|
| `--limit` | `10` | Maximum number of results |
|
|
206
|
+
| `--cql` | false | Pass query as raw CQL instead of text search |
|
|
206
207
|
|
|
207
208
|
```sh
|
|
208
209
|
confluence search "deployment pipeline"
|
|
209
|
-
confluence search "
|
|
210
|
+
confluence search --cql 'siteSearch ~ "deployment pipeline" and space = "MYSPACE"' --limit 50
|
|
210
211
|
```
|
|
211
212
|
|
|
212
213
|
---
|
|
@@ -697,7 +698,7 @@ confluence children 123456789 --recursive --format json | jq '.[].id'
|
|
|
697
698
|
### Search and process results
|
|
698
699
|
|
|
699
700
|
```sh
|
|
700
|
-
confluence search "release notes" --limit 20
|
|
701
|
+
confluence search --cql 'siteSearch ~ "release notes" and space = "MYSPACE"' --limit 20
|
|
701
702
|
```
|
|
702
703
|
|
|
703
704
|
---
|