Indexed

Confluence

Create collections from Confluence pages using CQL.

Confluence Connector

Confluence Cloud

indexed index create confluence \
  -c wiki \
  -u https://company.atlassian.net/wiki \
  -q "space = DEV AND type = page"

Confluence Server / Data Center

indexed index create confluence \
  -c internal-wiki \
  -u https://confluence.company.com \
  -q "space = ENG"

Comments:

  • --read-all-comments (default) or --first-level-comments

Prerequisites:

# .env
auth: CONFLUENCE_API_TOKEN=your_token

Options:

  • --collection, -c (required)
  • --url, -u (required)
  • --cql, --query, -q (required)
  • --read-all-comments / --first-level-comments
  • --use-cache / --no-cache
  • --force